Page 1 of 1

[DONE] www.pluzz.fr (France)

PostPosted: Tue Oct 25, 2011 3:06 pm
by Slyjohns
http://www.pluzz.fr/

It's a catch up TV site with all national channels of France.

--> viewtopic.php?f=20&t=4365

Re: www.pluzz.fr (France)

PostPosted: Tue Oct 25, 2011 4:35 pm
by zip
That looks doable.

Re: www.pluzz.fr (France)

PostPosted: Tue Dec 06, 2011 9:35 pm
by Illico
This is a beta version of Pluzz.groovy
URL example : http://feeds.feedburner.com/Pluzz-France5?format=xml

[ LINK REMOVED ]

Look at this link for rss list :
http://www.pluzz.fr/rss.html

For testing, I started with
http://feeds.feedburner.com/Pluzz-France5
and select the xml format link
http://feeds.feedburner.com/Pluzz-France5?format=xml

The groovy syntax should be enhanced, I'm not a Java/Groovy dev man.

Re: www.pluzz.fr (France)

PostPosted: Tue Dec 06, 2011 11:39 pm
by zip
well done mate. I guess you could use XML parsing instead of the regex in some cases?

Re: www.pluzz.fr (France)

PostPosted: Wed Dec 07, 2011 7:28 pm
by Illico
zip wrote:well done mate. I guess you could use XML parsing instead of the regex in some cases?

Ok thanks, I'll have a look.

EDIT : deleted

Re: www.pluzz.fr (France)

PostPosted: Sun Dec 11, 2011 7:56 pm
by Illico
Its ok now with XML parsing.
But some content URL looks like this :
rtmp://videozones-rtmp.francetv.fr/ondemand/mp4:cappuccino/publication/geoloc/france-dom-tom/Autre/Autre/2011/S49/J4/252352_16955_1303380908.oggy_lasolitude.mp4

I try this ffmpeg - i command line, but a timeout result appears:
ffmpeg.exe -i "rtmp://videozones-rtmp.francetv.fr:1935/ondemand/mp4 swfUrl=http://www.pluzz.fr/layoutftv/players/h264/player.swf playpath=mp4:cappuccino/publication/geoloc/france-dom-tom/Autre/Autre/2011/S49/J4/252352_16955_1303380908.oggy_lasolitude.mp4 swfVfy=1"

Any ideas?

Re: www.pluzz.fr (France)

PostPosted: Mon Dec 12, 2011 9:30 am
by zip
you may have to separate it to add playpath (usually starting with the mp4 bit. Try the rtmpsuck trick linked in the dev guide.

Re: www.pluzz.fr (France)

PostPosted: Mon Dec 12, 2011 1:07 pm
by Illico
zip wrote:you may have to separate it to add playpath (usually starting with the mp4 bit.

???
Already done, see my previous post, I used playpath="value".

Re: www.pluzz.fr (France)

PostPosted: Mon Dec 12, 2011 1:20 pm
by zip
Sorry, overlooked it.

There might be a case the URL expires immediately, or soon after the plugin runs (maybe after the duration of the clip). You can confirm it by trying ffmpeg -i straight after the plugin runs and then later on.

If that is the case you should set expiresImmediately=true in the plugin and as well a cache key (0.6.1 only)

Re: www.pluzz.fr (France)

PostPosted: Mon Dec 12, 2011 6:14 pm
by Illico
I found that I have to change the port number to 80! like this:

ffmpeg.exe -i "rtmp://videozones-rtmp.francetv.fr:80/ondemand/mp4 app=ondemand/mp4 swfUrl=http://www.pluzz.fr/layoutftv/players/h264/player.swf playpath=mp4:/cappuccino/publication/geoloc/france-dom-tom/Autre/Autre/2011/S49/J4/252352_16955_1303380908.oggy_lasolitude.mp4 swfVfy=1"

So now I have to work on plugins...

Re: www.pluzz.fr (France)

PostPosted: Tue Dec 13, 2011 7:56 pm
by Illico
Plugin is now available : viewtopic.php?f=20&t=4365