Hi,
Dreamfilm.se is a site that streams movies and TV shows with Swedish subs. Is it possible to do a plugin for this site? All i know is that the site uses flash in their web player.
As long as its only the player and not the entire UI that uses Flash, then it’s likely possible to build a plugin for it. I would suggest using HTTPFox add-on for Firefox or Chrome’s developer tools to see if the video streams underlying the flash-player are exposed. If they are then youcan grab them directly rather than having to use a site config file.
Nice :)
I'm not a developer myself, but i'm a fast learner :) Could you point me to the right direction to find the info needed? I have already used the developer tool in Chrome to find out where the streams come from, but without success.
Usually, I watch the http traffic for any signs of direct links to MP4 or FLV files. These days we can also use RTMP or RTMPE URLs to grab video directly. The RTMP(E) URLs tend to be hidden within XML returned by some type of a player config URL, often labelled as a SMIL file. If you can find any of those, then you've got a good start to grabbing the video directly. If not, you'll need a site config file so that PMS can lock on to the flash player directly. There's info on working with site configs here: http://dev.plexapp.com/docs/channels/siteconfigs.html
Thanks!
I know this is an old post, found it searching for more info on best practices for pulling video files, rtmp, etc.
Usually, I watch the http traffic for any signs of direct links to MP4 or FLV files. These days we can also use RTMP or RTMPE URLs to grab video directly. The RTMP(E) URLs tend to be hidden within XML returned by some type of a player config URL, often labelled as a SMIL file. If you can find any of those, then you've got a good start to grabbing the video directly. If not, you'll need a site config file so that PMS can lock on to the flash player directly. There's info on working with site configs here: http://dev.plexapp.com/docs/channels/siteconfigs.html
I am having trouble with the concept of exactly what RTMP is. Does RTMP just mean the video object within the web page? Where rather than find the source video you just access the video player object with its parameters? And you could use the RTMPVideoURL() command, and use the parameters easily available in the web page to access the video, but that uses webkit and you want to avoid that if at all possible?
So pretty much you want to try to find a direct link to the mp4 or flv files. But if you can't find these files easily in the web page you are trying to access with Plex, RTMPE just means that you can look in the video object within the code of the page for some type of xml document that gives you the address of the .smil file that does give you the direct address of the mp4 or flv file?
Am I starting to grasps this or am I completely off?
Never mind. Finally figured out the concept of RTMP thanks to Sanders
Hello!
I would love a plugin for dreamfilm or other sites that stream movies with swedish subtitles. Is any plugin available?
/Hans
Hello!
I would love a plugin for dreamfilm or other sites that stream movies with swedish subtitles. Is any plugin available?
/Hans
Ill second that. A lot of swedes are looking for it as its mentioned in different forums.
Plugin is available for the xbmc but i really dont like that media solution ;)
Could anyone help me get this started? XBMC plugin:
https://github.com/diggidanne/dreamfilm-xbmc
Ping! @Mikedm139
Most of the "magic" happens in this file:
https://github.com/diggidanne/dreamfilm-xbmc/blob/master/dreamfilm.py
Most of the "magic" happens in this file:
https://github.com/diggidanne/dreamfilm-xbmc/blob/master/dreamfilm.py
What he said :)
What he said :)
Yeah, what i can tell the .py contains the stream URL´s. Could it be so easy as including these in a random flash-steam-app? Just changing a bit of the code?
Alas it's not that simple. There's no such thing as a random flash-stream-app, but you may be able to figure out enough clues for how to access the actual content (not just the flash player) from that XBMC channel. And for-the-record, porting an XBMC channel to Plex is not a trivial process (it's basically rewriting it) .. the channel framework in Plex is nothing like the XBMC one, it's a whole different ballgame. About the only similarity these days is that they both use python ;)
Alas it's not that simple. There's no such thing as a random flash-stream-app, but you may be able to figure out enough clues for how to access the actual content (not just the flash player) from that XBMC channel. And for-the-record, porting an XBMC channel to Plex is not a trivial process (it's basically rewriting it) .. the channel framework in Plex is nothing like the XBMC one, it's a whole different ballgame. About the only similarity these days is that they both use python ;)
Bummer.. Well, i might have some spare time to figure it out some say. Thanks for the info though.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.