![]() |
|
Begging scripters for internet-TV "links" script... - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27) +--- Thread: Begging scripters for internet-TV "links" script... (/showthread.php?tid=25770) |
- demogorgan - 2007-08-02 11:37 Spanner Wrote:Ah. That sounds like it could be the problem then, eh? Veoh is only sending a preview, rather than the full thing. Perhaps there's a way to either log into Veoh from XBMC as Demogorgan says (maybe even automatically when the script starts? Sorry if this is a tall order or utterly impractical/impossible. I know precisely nothing about programming when you click on the link you can look at where it is caching the video from and it will say preview sometimes can be lucky and it will play the whole thing othertimes not lol as for the logging in part i think it has something to do with the ip address so if there was a browser on xbmc could try it that way see if that works ? i dont no that much about the xbmc am still learning at the moment Updated TVLinks script with Project Mayhem III-like skin - Unbehagen - 2007-08-04 02:16 Hey, I just updated my version of pvtschlag's fine script. It is edited to match the Project Mayhem III skin. I also changed a few lines so that some media, Stage6 Divx for example, is playable again - TVLinks seems to have changed their URL scheme. The veoh URLs are still the same though. Some of them keep being preview links and randomly stop during streaming. You can find it here: http://theendofthelongestline.de/tvlinks.zip Hagen - Unbehagen - 2007-08-04 19:06 Here is an updated version that can also download the selected episode to the XBox hdd. Just press the "INFO" button on your remote. This is especially useful for slow video hosters like toudou.com and others. Have fun! http://www.theendofthelongestline.de/TVLinksPM3Download.zip - mby2j - 2007-08-04 19:53 Unbehagen Wrote:Here is an updated version that can also download the selected episode to the XBox hdd. Just press the "INFO" button on your remote. This is especially useful for slow video hosters like toudou.com and others. Have fun! Hi, ive just downloaded it and it looks great, 1 question though, how do you record using the xbox pad and not the remote control? - Unbehagen - 2007-08-04 20:47 mby2j Wrote:Hi, ive just downloaded it and it looks great, 1 question though, how do you record using the xbox pad and not the remote control? Edit the default.py and find the line: Code: if action == ACTION_SHOW_INFO:Code: ACTION_MOVE_LEFT- mby2j - 2007-08-04 21:35 Unbehagen Wrote:Edit the default.py and find the line: Thanks, I changed it to Action_Select_Item and now when you select the item it asks you if you wish to download it first, click cancel and then it will play. Can confirm that the download fuction works perfectly! Thanks Unbehagen & obviously Pvtschlag for the fantastic script
- Unbehagen - 2007-08-04 23:14 mby2j Wrote:Thanks, I changed it to Action_Select_Item and now when you select the item it asks you if you wish to download it first, click cancel and then it will play. Can confirm that the download fuction works perfectly! Thanks Unbehagen & obviously Pvtschlag for the fantastic scriptI think I found a better solution: Within the first lines with all the ACTION_... constants definitions, add the following: Code: ACTION_CONTEXT_MENU = 117Code: if action == ACTION_SHOW_INFO:Code: if ((action == ACTION_SHOW_INFO) or (action == ACTION_CONTEXT_MENU)):- SyPhy - 2007-08-05 05:58 Unbehagen Wrote:I think I found a better solution: why not upload an updated version of the script with this slight mod? no big deal to edit it, just makes it easier for everyone... AND THANKS FOR THE DOWNLOAD OPTION! great work - Unbehagen - 2007-08-05 06:27 SyPhy Wrote:why not upload an updated version of the script with this slight mod? no big deal to edit it, just makes it easier for everyone...here you go! http://theendofthelongestline.de/TVLinksPM3DownloadRemotePad.zip - Unbehagen - 2007-08-05 06:35 BTW: I experienced that if you download FLV files and later play them using the file manager or video browser, XBMC automatically chooses the DVDPlayer core, not the MPlayer one. This seems to be a good choice, because fast forwarding and other stuff works better with this core in the version of XBMC I'm using. Could anyone try this? I would make the other player core the default in the script then. To the scripters: I would like to create a context menu to offer more complex operations and settings for videos. I'm thinking of a context menu like for example the one that shows if you press info/white button on a game in the programs browser. I found this in other scripts like the youtube one, but it all seemed to involve this guibuilder xml stuff, which i'd like to stay away from for now. Anyone got an idea on how to solve this task? |