[vlc-commits] vimeo: use avformat demuxer
Pierre Ynard
git at videolan.org
Tue Feb 22 11:54:57 CET 2011
vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Tue Feb 22 11:54:40 2011 +0100| [5c78dcbeae9318725fc98670949574fdfcb947bd] | committer: Pierre Ynard
vimeo: use avformat demuxer
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5c78dcbeae9318725fc98670949574fdfcb947bd
---
share/lua/playlist/vimeo.lua | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/share/lua/playlist/vimeo.lua b/share/lua/playlist/vimeo.lua
index fd1337f..6939ca5 100644
--- a/share/lua/playlist/vimeo.lua
+++ b/share/lua/playlist/vimeo.lua
@@ -64,9 +64,9 @@ function parse()
ishd = true
end
end
- table.insert( p, { path = "http://vimeo.com/moogaloop/play/clip:"..id.."/"..rsig.."/"..rsigtime; name = name; arturl = arturl } )
+ table.insert( p, { path = "http://vimeo.com/moogaloop/play/clip:"..id.."/"..rsig.."/"..rsigtime; name = name; arturl = arturl; options = {":demux=avformat,ffmpeg"} } )
if ishd == true then
- table.insert( p, { path = "http://vimeo.com/moogaloop/play/clip:"..id.."/"..rsig.."/"..rsigtime.."/?q=hd"; name = name.." (HD)"; arturl = arturl } )
+ table.insert( p, { path = "http://vimeo.com/moogaloop/play/clip:"..id.."/"..rsig.."/"..rsigtime.."/?q=hd"; name = name.." (HD)"; arturl = arturl; options = {":demux=avformat,ffmpeg"} } )
end
end
return p
More information about the vlc-commits
mailing list