Changeset 0a022a6301b96393291ad5c5106cd89f3e6b1eb5
- 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
| ra117ab7 |
r0a022a6 |
|
| 23 | 23 | or string.match( vlc.path, "p.swf" ) -- the (old?) player url |
|---|
| 24 | 24 | 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) |
|---|
| 27 | 27 | end |
|---|
| 28 | 28 | |
|---|