Kodi Community Forum
Release P2P-Streams - SopCast and AceStream for Kodi - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Video Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=154)
+---- Thread: Release P2P-Streams - SopCast and AceStream for Kodi (/showthread.php?tid=201894)



RE: P2P-Streams - SopCast and AceStream for Kodi - lpraderi - 2014-12-14

(2014-12-13, 19:03)enen92 Wrote: Parsers are independent from the engine, if you're able to play the ones in the favourites/history all is fine. You probably just have versions of them that are not compatible with the newer version of p2p-streams (a module inside the addon had to change name). Youtube and google are the best friends for you in this case because of forum.kodi.tv rules / piracy policy. A small tip, make sure you include the word "remote" in your search.
Please do not bring parser problems/issues to this thread in the future.

First of all , my apologies ... sorry for bring parser trouble to this thread.
Didn't noticed about dynamic script, all solved now ... thanks again.

Now you can add GeeXbox to the OS supported list of the addon,
just need a little fix for the distro "/storage" need to point to "/root" or more universally "/$HOME"
on start.sh script.


RE: P2P-Streams - SopCast and AceStream for Kodi - zarac - 2014-12-15

Let me first say thank you for this plugin - brilliant work. It works great on my ubuntu HT machine.

However, yesterday after I installed it on my mac (kodi rc3), whenever I tried running an acestream stream, p2p-streams would notify me that the engine is not installed, even though the lengthy automatic download of acestream engine has completed.

After some looking around I found the command you use to start and stop the engine so I tried it just to see the terminal output. It turned out that the "Ace Stream" wine-wrapper application was not installed to /Applications, but rather to the root of my system drive. So I just moved it to the /Applications folder and everything works like it should.

Don't know if it just my system or if its a bug - just noticed and wanted to report.

EDIT: I forgot to mention, my mac is on 10.8.5, kodi helix rc3 x64.


RE: P2P-Streams - SopCast and AceStream for Kodi - enen92 - 2014-12-15

(2014-12-15, 13:27)zarac Wrote: Let me first say thank you for this plugin - brilliant work. It works great on my ubuntu HT machine.

However, yesterday after I installed it on my mac (kodi rc3), whenever I tried running an acestream stream, p2p-streams would notify me that the engine is not installed, even though the lengthy automatic download of acestream engine has completed.

After some looking around I found the command you use to start and stop the engine so I tried it just to see the terminal output. It turned out that the "Ace Stream" wine-wrapper application was not installed to /Applications, but rather to the root of my system drive. So I just moved it to the /Applications folder and everything works like it should.

Don't know if it just my system or if its a bug - just noticed and wanted to report.

EDIT: I forgot to mention, my mac is on 10.8.5, kodi helix rc3 x64.

Unfortunately (or fortunately Cool ) I don't have a mac around often. However it shouldn't download/extract anything to you root filesystem but to the /Applications folder. See the code here and the references to the /Applications folder:

https://github.com/enen92/P2P-Streams-Kodi/blob/master/plugin.video.p2p-streams/resources/core/autoconf.py#L650-L656

Don't know why that happened to you, maybe osx has some security rule or something that doesn't allow direct download or extraction on the applications folder, using the root filesystem as an alternative (?!). Glad you read the wiki and managed to trace/solve the issue yourself.

Cheers


Is Raspbian supported for this add-on - armtatoo - 2014-12-15

Hello,

I tried to install this nice addon on my Raspberry PI running Raspbian but it doesn't launch any sopcast channel even if the channel is working.

The logs shows that an other instance of sopcast is running. I have sopcast working with p2ptv-pi but i really like the parser part in p2p-streams.

Is this addon compatible with Raspbian? if yes can someone help to find what is wrong in my install.

Thanks for your help

20:28:07 T:2700080144 NOTICE: URL: sop://124.232.150.188:3912/9761
20:28:07 T:2700080144 NOTICE: Name: [COLOR orange]CCTV-4(h) [/COLOR](mpeg-ts)
20:28:07 T:2700080144 NOTICE: Iconimage: None
20:28:07 T:2700080144 NOTICE: Parser: None
20:28:07 T:2700080144 NOTICE: Parserfunction: None
20:28:07 T:2700080144 NOTICE: Starting Player Sop URL: sop://124.232.150.188:3912/9761
20:28:07 T:2700080144 NOTICE: [u'/home/xbmc/.xbmc/userdata/addon_data/plugin.video.p2p-streams/sopcast/qemu-i386', u'/home/xbmc/.xbmc/userdata/addon_data/plugin.video.p2p-streams/sopcast/lib/ld-linux.so.2', '--library-path', u'/home/xbmc/.xbmc/userdata/addon_data/plugin.video.p2p-streams/sopcast/lib', u'/home/xbmc/.xbmc/userdata/addon_data/plugin.video.p2p-streams/sopcast/sp-sc-auth', 'sop://124.232.150.188:3912/9761', '9000', '9001']
20:28:09 T:2700080144 NOTICE: Other instance of sopcast is still running
20:28:30 T:2700080144 NOTICE: Player ended at last
20:28:30 T:2700080144 WARNING: Attempt to use invalid handle -1
20:28:35 T:2700080144 NOTICE: Thread LanguageInvoker start, auto delete: false


RE: P2P-Streams - SopCast and AceStream for Kodi - enen92 - 2014-12-15

Does the waiting dialog appear at all? Try killing the sp-sc-auth bin and try again:

Quote:killall -9 sp-sc-auth

If not, run the cmd below on the terminal (single cmd!) and check the terminal output for errors. If you find some please pastebin them:

Code:
/home/xbmc/.xbmc/userdata/addon_data/plugin.video.p2p-streams/sopcast/qemu-i386 /home/xbmc/.xbmc/userdata/addon_data/plugin.video.p2p-streams/sopcast/lib/ld-linux.so.2 --library-path /home/xbmc/.xbmc/userdata/addon_data/plugin.video.p2p-streams/sopcast/lib /home/xbmc/.xbmc/userdata/addon_data/plugin.video.p2p-streams/sopcast/sp-sc-auth sop://124.232.150.188:3912/9761 9000 9001



RE: P2P-Streams - SopCast and AceStream for Kodi - armtatoo - 2014-12-15

Thanks for your quick response.

Does the waiting dialog appear at all? Try killing the sp-sc-auth bin and try again:
Yes it does and it goes to 100% and then I say Channel initialization failed below

pi@raspberrypi /home/xbmc/.xbmc/temp $ sudo killall -9 sp-sc-auth
sp-sc-auth: aucun processus trouvé

It means no process found

after launching the cmd mentionned above I have the following ERROR:

ERROR: ld.so: object '/usr/lib/arm-linux-gnueabihf/libcofi_rpi.so' from /etc/ld.so.preload cannot be preloaded: ignored.
detect MTU=4c4
Connection=11Connection=11
i=0 51
ipExternal:ed924252 Internal:1200a8c0 portLocal:42108 portExternal1:42108 External2:42108 linkType:51


I pastebinned the rest of the command
http://pastebin.com/1ru3Mu3c


RE: P2P-Streams - SopCast and AceStream for Kodi - enen92 - 2014-12-15

The only thing the addon does is to run this command and forward the stream (http://127.0.0.1:9001) to kodi player. According to your log the sp-sc-auth is working fine, so there is no reason for the addon not to work. What exactly happens when you select a sopcast stream from within the addon?


RE: P2P-Streams - SopCast and AceStream for Kodi - armtatoo - 2014-12-15

(2014-12-15, 22:28)enen92 Wrote: The only thing the addon does is to run this command and forward the stream (http://127.0.0.1:9001) to kodi player. According to your log the sp-sc-auth is working fine, so there is no reason for the addon not to work. What exactly happens when you select a sopcast stream from within the addon?

After a few seconds the dialog appear with the percentage of P2P-STREAMS

Sopcast
Loading stream . Please wait till 20seconds

and then after it reached 100%, there is an error message below on the right with Channel Initialization Failed


RE: P2P-Streams - SopCast and AceStream for Kodi - armtatoo - 2014-12-16

I found a workaround by increasing the wait_time to 10000 before the player is launched. It's working now.

I modified directly from the file sopcast.py, I couldn't find the parameter in advancedsettings.xml.

Hope it will help other people


RE: P2P-Streams - SopCast and AceStream for Kodi - seeven - 2014-12-18

i would like to know if p2p now works on Openelec 4.2.1 for ARM devices. I tried to read some steps in the threads but did not work. I have Gotham 13.2 on Openelec 4.2.1. I am running p2p 1.1.9
When i launch any sopcast link - nothing happens / acestream : starting acestream engine : errors out Torrent not available or invalid

here is my log : http://xbmclogs.com/show.php?id=375488


RE: P2P-Streams - SopCast and AceStream for Kodi - formula - 2014-12-18

(2014-12-13, 13:42)formula Wrote:
(2014-08-20, 20:33)haakie Wrote: Thanks for your answer.
Too bad it is not working anymore.

And the other solution is set my laptop as server and change settings in addon on the pi?
As described in here?

Can I run the engine on a different computer?
Yes.....https://github.com/enen92/P2P-Streams-XBMC/wiki/Using-an-acestream-engine-running-on-a-different-location


Anyone used Portty ? im trying to run Acestream Engine from a different location and forward it to an android box , instead of the box using the inbuilt engine , it should use the engine on my PC by creating 2 rules of tunneling , my PC being the server and the box the client , ive downloaded the Portty Zip file but i have no clue what to do with them , there is no clickable exe file , here is the website ive followed the instructions just stuck on the last bit of making 2 rules up ... https://github.com/…/Using-an-acestream-engine-running-on-a

so your telling me nobody knows anything about this yet its in the instructions to the P2P plugin here ?


RE: P2P-Streams - SopCast and AceStream for Kodi - enen92 - 2014-12-18

(2014-12-18, 06:57)seeven Wrote: i would like to know if p2p now works on Openelec 4.2.1 for ARM devices. I tried to read some steps in the threads but did not work. I have Gotham 13.2 on Openelec 4.2.1. I am running p2p 1.1.9
When i launch any sopcast link - nothing happens / acestream : starting acestream engine : errors out Torrent not available or invalid

here is my log : http://xbmclogs.com/show.php?id=375488

It doesn't work for linux arm, only protocol 2.0 which means 99% of the acestreams that exist today do not play.

(2014-12-18, 10:52)formula Wrote:
(2014-12-13, 13:42)formula Wrote:
(2014-08-20, 20:33)haakie Wrote: Thanks for your answer.
Too bad it is not working anymore.

And the other solution is set my laptop as server and change settings in addon on the pi?
As described in here?

Can I run the engine on a different computer?
Yes.....https://github.com/enen92/P2P-Streams-XBMC/wiki/Using-an-acestream-engine-running-on-a-different-location


Anyone used Portty ? im trying to run Acestream Engine from a different location and forward it to an android box , instead of the box using the inbuilt engine , it should use the engine on my PC by creating 2 rules of tunneling , my PC being the server and the box the client , ive downloaded the Portty Zip file but i have no clue what to do with them , there is no clickable exe file , here is the website ive followed the instructions just stuck on the last bit of making 2 rules up ... https://github.com/…/Using-an-acestream-engine-running-on-a

so your telling me nobody knows anything about this yet its in the instructions to the P2P plugin here ?

Portty was just an example of what needs to be done to make it work, probably not the best alternative. ValdikSS proxy on the other hand works much better, you don't need to configure any ports and is pretty easy to configure.


RE: P2P-Streams - SopCast and AceStream for Kodi - stuartj9 - 2014-12-18

I have tried following the instructions for the mxlinux boxbut it doesn't detect it linux. Is there anything I need to do? I have tried readING but I seem to find year old info. Thanks.


RE: P2P-Streams - SopCast and AceStream for Kodi - stuartj9 - 2014-12-19

Whoops sorry. I see it can't be done.


RE: P2P-Streams - SopCast and AceStream for Kodi - kokoui - 2014-12-19

Hello I have two machines one with android and one with openelec. Ace streams torrents work flawlessly with android but when I open the same torrent with openelec I am getting the message torrent not found (ace stream engine started), none of the ace streams torrent work on openelec