Changeset 0a022a6301b96393291ad5c5106cd89f3e6b1eb5

Show
Ignore:
Timestamp:
09/12/07 22:29:00 (11 months ago)
Author:
Antoine Cellerier <dionoea@videolan.org>
git-committer:
Antoine Cellerier <dionoea@videolan.org> 1189628940 +0000
git-parent:

[7f37f93bc7040b5fbb87fd862d4a5c24ffb0ab1a]

git-author:
Antoine Cellerier <dionoea@videolan.org> 1189628940 +0000
Message:

Fix youtube.lua probe() function.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • share/luaplaylist/youtube.lua

    ra117ab7 r0a022a6  
    2323            or string.match( vlc.path, "p.swf" ) -- the (old?) player url 
    2424            or string.match( vlc.path, "jp.swf" ) -- the (new?) player url (as of 24/08/2007) 
    25             or string.match( vlc.path, "player2.swf" ) ) -- another player url 
    26             or ( string.match( vlc.path, "get_video%?video_id=" ) and not string.match( vlc.path, "t=" ) ) -- the video url without the t= parameter which is mandatory (since 24/08/2007) 
     25            or string.match( vlc.path, "player2.swf" ) -- another player url 
     26            or ( string.match( vlc.path, "get_video%?video_id=" ) and not string.match( vlc.path, "t=" ) ) ) -- the video url without the t= parameter which is mandatory (since 24/08/2007) 
    2727end 
    2828