Skip to content

CodeSturgeon/vlcrc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Python VLC RemoteControl interface bridge

An easy way to get VLC and Python talking.

VLC Setup

Have VLC setup it's RC interface on local TCP port 4222. Either by config or using the following command line options:

--extraintf=rc --rc-host=127.0.0.1:4222

Python Setup

python setup.py install

No dependancies, just python and included batteries.

Tool usage

$ vlcrc-easygui

Uses a small EasyGUI tool to group filepaths of videos. Good for sorting videos out of folders of random junk. Dumps the file paths of all the grouped items.

Class usage

from vlcrc import VLCRemote
vlc = VLCRemote(hostname, port_no)
now_playing = vlc.get_filename()
while 1:
    if now_playing.find('wiggles')>=0:
        vlc.next()

About

Python module and tools based around VLC's RC interface

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages