Skip to content

Commit

Permalink
vimeo.lua: support channel video page URLs
Browse files Browse the repository at this point in the history
Fix #16195
  • Loading branch information
linkfanel committed Feb 2, 2016
1 parent 7ccee74 commit e08420e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions share/lua/playlist/vimeo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
function probe()
return ( vlc.access == "http" or vlc.access == "https" )
and ( string.match( vlc.path, "vimeo%.com/%d+$" )
or string.match( vlc.path, "vimeo%.com/channels/(.-)/%d+$" )
or string.match( vlc.path, "player%.vimeo%.com" ) )
-- do not match other addresses,
-- else we'll also try to decode the actual video url
Expand Down

0 comments on commit e08420e

Please sign in to comment.