Search found 6 matches

Go to advanced search

by uky
01 Dec 2009 14:10
Forum: Scripting VLC in lua
Topic: Playing Youtube playlists
Replies: 11
Views: 13599

Re: Playing Youtube playlists

The problem is a Lua playlist script has very limited control over VLC's playlist. All they can really do is append items to the end. Everything else is handled automatically by VLC. I haven't a clue how to do what you suggested or if it's even possible with the current setup. If you read through th...
by uky
30 Nov 2009 01:47
Forum: Scripting VLC in lua
Topic: Playing Youtube playlists
Replies: 11
Views: 13599

Re: Playing Youtube playlists

Doesn't work anymore for new playlists on user profiles :( e.g. http://www.youtube.com/user/<USERID>#p/c/<PLAYLISTID> Tried fixing it. It loads the playlists but item by item, if I want to get to an item at the end of the playlist its very hindering. Any idea how to fix that behaviour? Huh? Your fi...
by uky
11 Oct 2009 22:53
Forum: Scripting VLC in lua
Topic: Playing Youtube playlists
Replies: 11
Views: 13599

Re: Playing Youtube playlists

A small update for anyone using my Lua script here. No new features. It just adds support for the playlist URLs you see on the new-style YouTube channels (e.g. youtube.com/user/<user>#(play|grid)/user/<playlist_ID>) since the old-style channels are being phased out. Now that I think about it, I shou...
by uky
22 Aug 2009 12:24
Forum: Scripting VLC in lua
Topic: Playing Youtube playlists
Replies: 11
Views: 13599

Re: Playing Youtube playlists

The easiest way I could think getting expired videos to work didn't work: function probe() return vlc.access == "http" and string.match( vlc.path, "youtube.com/get_video%?" ) end function parse() if string.match( vlc.path, "[?&]video_id=([^&]+)" ) then video_id ...
by uky
22 Aug 2009 08:16
Forum: Scripting VLC in lua
Topic: Playing Youtube playlists
Replies: 11
Views: 13599

Re: Playing Youtube playlists

WOW great job! Working pretty good for me. Just some feature requests for the next update: 1) Allow it to play the Youtube quicklist also Quicklists? Hmm... I've never used those so I'm not familiar with them. Is there a public way to see someone's quicklist? I don't see them even mentioned in the ...
by uky
18 Aug 2009 01:48
Forum: Scripting VLC in lua
Topic: Playing Youtube playlists
Replies: 11
Views: 13599

Re: Playing Youtube playlists

I've searched around a bit for playing YouTube playlists in VLC. This seemed to be the most relevant thread though an unresolved one. I decided to try to make a Lua script for it myself. It's my first time with Lua so I imagine I'm not doing things as well as I could be. Here's my first draft of it:...

Go to advanced search