• 1
  • 4
  • 5
  • 6
  • 7(current)
  • 8
WIP Infowars.com Video Plugin
#91
(2020-08-01, 16:00)EVILCURT Wrote: Any fix on this ? It's been broken for months.

+1 to a banned.video add-on!
Reply
#92
Is this working for anyone? 2.1.5 on the latest librelec isn't working. Was looking forward to watching their election coverage.
Reply
#93
I got it working with the following "hack". Insert the code (below) on line 363 of file (your file location/path may vary, I'm on LibreElec)
Code:
/storage/.kodi/addons/plugin.video.infowars/default.py
And reboot. 
Code:
IW_addon.add_directory({'mode': 'PlayURL','url':'https://freespeech.akamaized.net/hls/live/2016712/live1/playlist.m3u8'},{'title': cFL_('Election 2020','green')},is_folder=False,img=IWLiveSEIcon,fanart=IWLiveSEFanart)
Reply
#94
(2020-11-03, 17:15)blackcap Wrote: I got it working with the following "hack". Insert the code (below) on line 363 of file (your file location/path may vary, I'm on LibreElec)
Code:
/storage/.kodi/addons/plugin.video.infowars/default.py
And reboot. 
Code:
IW_addon.add_directory({'mode': 'PlayURL','url':'https://freespeech.akamaized.net/hls/live/2016712/live1/playlist.m3u8'},{'title': cFL_('Election 2020','green')},is_folder=False,img=IWLiveSEIcon,fanart=IWLiveSEFanart)

Where did you find the URL for the Election 2020 stream? I'm interested in making a PR with updated links but I can't seem to find any
Reply
#95
Should I send my army of rodents to AJ and force him to stop breaking our Kodi plugin?

blackcap's fix works for the "2020 Election" stream, although now AJ's talking about lock-down insanity in the Soviet Republic of Canuckistan on this stream.
Reply
#96
I upgraded to Kodi Matrix, but this add-on got disabled because it uses Python 2. I don't know how to code in Python. Is anyone willing to update the code in this add-on to use Python 3?
Reply
#97
I've no experience with Python but had a bash and now the streams for The Alex Jones Show and The David Knight Show work. War Room with Owen Shroyer doesn't seem to load for me, though hopefully one of you can find the reason for that. I couldn't find a playlist URL for Fire Power with Will Johnson, so I'm assuming that show is no longer aired.

1. As with blackcap's solution, open:
Code:
/storage/.kodi/addons/plugin.video.infowars/default.py
2. Make a backup of default.py in case it breaks
3. Replace lines 358, 359 & 360 with the following code:
python:
IW_addon.add_directory({'mode': 'PlayURL','url':'https://freespeech.akamaized.net/hls/live/2016712/live2/playlist.m3u8'},{'title':  cFL_('The Alex Jones Show - (Loops After Airing)','lime')},is_folder=False,img=AJSIcon,fanart=IW_artFanart)
IW_addon.add_directory({'mode': 'PlayURL','url':'https://freespeech.akamaized.net/hls/live/2016873/live3/playlist.m3u8'},{'title':  cFL_('The David Knight Show - (Loops After Airing)','orange')},is_folder=False,img=DKSIcon,fanart=DKSFanart)
IW_addon.add_directory({'mode': 'PlayURL','url':'https://freespeech.akamaized.net/hls/live/2016873/live4/playlist.m3u8'},{'title':  cFL_('War Room with Owen Shroyer - (Loops After Airing)','purple')},is_folder=False,img=WarRoomIcon,fanart=WarRoomFanart)

Cheers,
Prys
Reply
#98
Here is an updated default.py for the infowars addon it also has the banned.video working to watch full shows and video clips.

alex jones live stream
war room livestream
david knight live stream
infowars tv live stream

banned.video videos for the last 15 posted under different categories. I can add more if need be.

here is the link:
https://github.com/Spinalcracker/infowars/issues/2

Just unzip the file and copy or backup default.py and replace as described in some of the posts.
Thx
Reply
#99
Since this add-on has been broken for a long time and appears to have been abandoned, I took it upon myself to fork the repository and I made the above mentioned updates.

http://github.com/Powersurge/infowars

I also paid someone to convert the Python 2 code to Python 3 so that this add-on will run in Kodi Matrix.

http://github.com/Powersurge/banned.video
Reply
(2020-12-17, 07:01)Powersurge65 Wrote: Since this add-on has been broken for a long time and appears to have been abandoned, I took it upon myself to fork the repository and I made the above mentioned updates.

http://github.com/Powersurge/infowars

I also paid someone to convert the Python 2 code to Python 3 so that this add-on will run in Kodi Matrix.

http://github.com/Powersurge/banned.video

We need to add it to a repository so it is easy to install.
I can fork the same project and people can install my repo but i rather have it available thru the main kodi repo if possible. 
Reply
(2020-12-18, 20:25)PEW74 Wrote:
(2020-12-17, 07:01)Powersurge65 Wrote: Since this add-on has been broken for a long time and appears to have been abandoned, I took it upon myself to fork the repository and I made the above mentioned updates.

http://github.com/Powersurge/infowars

I also paid someone to convert the Python 2 code to Python 3 so that this add-on will run in Kodi Matrix.

http://github.com/Powersurge/banned.video

We need to add it to a repository so it is easy to install.
I can fork the same project and people can install my repo but i rather have it available thru the main kodi repo if possible. 
Feel free to fork the same project. I wouldn't be a good maintainer because I don't know Python. Here's how to submit add-on's to Kodi's main repository: https://kodi.wiki/view/Submitting_Add-ons
Reply
(2020-12-18, 22:16)Powersurge65 Wrote:
(2020-12-18, 20:25)PEW74 Wrote:
(2020-12-17, 07:01)Powersurge65 Wrote: Since this add-on has been broken for a long time and appears to have been abandoned, I took it upon myself to fork the repository and I made the above mentioned updates.

http://github.com/Powersurge/infowars

I just updated the infowars app based on the code from the original.

You can add my repo here with https://pewkodi.github.io/packages install repository.infowars.zip it will auto update.

I also paid someone to convert the Python 2 code to Python 3 so that this add-on will run in Kodi Matrix.

http://github.com/Powersurge/banned.video

We need to add it to a repository so it is easy to install.
I can fork the same project and people can install my repo but i rather have it available thru the main kodi repo if possible. 
Feel free to fork the same project. I wouldn't be a good maintainer because I don't know Python. Here's how to submit add-on's to Kodi's main repository: https://kodi.wiki/view/Submitting_Add-ons
Reply
(2020-12-19, 01:47)PEW74 Wrote:
(2020-12-18, 22:16)Powersurge65 Wrote:
(2020-12-18, 20:25)PEW74 Wrote:  
Feel free to fork the same project. I wouldn't be a good maintainer because I don't know Python. Here's how to submit add-on's to Kodi's main repository: https://kodi.wiki/view/Submitting_Add-ons
I added the update to my repo with the updated code for kodi 18. I will change to python3 once it is available.

repo link https://pewkodi.github.io/packages install repository.infowars.zip It will auto update the infowars app.
Reply
Did anyone mod the code for Python 3 for Matrix for the Infowars addon yet?
Also has anyone looked at Brighteon?
Reply
If Alex Jones was aware of this plugin going down, he'd probably go into a rant about Python 3 "turning the freakin' frogs gay" or insisting that all Kodi users were really "crisis actors".

(Just a little humor there, InfoWars fans. Don't get your blood pressure up.... like Alex.) Cool
Reply
  • 1
  • 4
  • 5
  • 6
  • 7(current)
  • 8

Logout Mark Read Team Forum Stats Members Help
Infowars.com Video Plugin1