daotk / mp-onlinevideos2

Automatically exported from code.google.com/p/mp-onlinevideos2
0 stars 1 forks source link

fileurlregex and more video's #12

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I also found out, that if a website offers more then one version of the
video (more grades of quality), it's not possible to choose in which
quality you want to see the video. (or I'm doing something wrong)

xgstvplayer\('(?<m0>[^']+)',\s'(?<m1>[^']+)',\s'[^']+',\s'[^']+',\s1\);

http://www.geenstijl.tv/2010/03/rutger_op_een_totaal_verlaten.html

I specified the m0 and m1, but how would it be possible to select one of those?

Also, before november 2008 (see category list), the website does not offer
the higher quality movie. Would be nice that one the first one isn't
available, it will try the next one.

Original issue reported on code.google.com by k.schasf...@gmail.com on 1 Apr 2010 at 1:05

GoogleCodeExporter commented 9 years ago
Additional information. Here are the video url's specified:

After november 2008:
xgstvplayer('http://flv.dumpert.nl/58301348_denhaagvandaag.mp4',
'http://flv.dumpert.nl/58301348_denhaagvandaag.mp4.flv', '720x406', '480x272', 
1);

Before:
gstvplayer('306911', 'http://flv.dumpert.nl/4f65fd04_making_of.mov.flv', 480, 
272);

Original comment by k.schasf...@gmail.com on 1 Apr 2010 at 1:07

GoogleCodeExporter commented 9 years ago
We should be able to get all matches from the regex. But it should not be m0 
and m1 
as playback options, rather:
2 matches: each having the m0, m1, ... the match also needs some identifying 
string 
for the name of the playbackoption, so the gui can show something like:
1   720x406
2   480x272
behind each choice hiding the url you mentioned above.

Original comment by bborgsd...@gmail.com on 1 Apr 2010 at 1:51

GoogleCodeExporter commented 9 years ago
I don't get it.. Could you give me the regex for getting the video?

Original comment by k.schasf...@gmail.com on 1 Apr 2010 at 2:00

GoogleCodeExporter commented 9 years ago
I changed it to this:
(?<m0>http://flv.dumpert.nl/[^']+)

Now it works at least with all the video's. But I still can't choose one of the 
2..

Original comment by k.schasf...@gmail.com on 1 Apr 2010 at 2:05

GoogleCodeExporter commented 9 years ago
Added with commit 534. Will be availbale for all users with release 0.20

Original comment by bborgsd...@gmail.com on 4 Apr 2010 at 4:02