All Projects → DerMitch → Py Vlcclient

DerMitch / Py Vlcclient

Licence: other
A simple python library to control VLC

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Py Vlcclient

kaa.si-cli
Stream anime from kaa.si and sync with anilist
Stars: ✭ 12 (-62.5%)
Mutual labels:  vlc
Acelink
Play Ace Streams in VLC on macOS.
Stars: ✭ 411 (+1184.38%)
Mutual labels:  vlc
Countries
Free legally receivable IPTV channels as .m3u for Kodi. :-)
Stars: ✭ 657 (+1953.13%)
Mutual labels:  vlc
Meta.vlc
Meta.Vlc is a LibVlc wrapper for WPF.
Stars: ✭ 265 (+728.13%)
Mutual labels:  vlc
Movie Monad
📺 A free and simple to use video player made with Haskell.
Stars: ✭ 347 (+984.38%)
Mutual labels:  vlc
Vlc Pause Click Plugin
Plugin for VLC that pauses/plays video on mouse click
Stars: ✭ 467 (+1359.38%)
Mutual labels:  vlc
VlcXamarin
Xamarin.Android bindings for VLC player
Stars: ✭ 35 (+9.38%)
Mutual labels:  vlc
Vlc.dotnet
.NET control that hosts the audio/video capabilities of the VLC libraries
Stars: ✭ 826 (+2481.25%)
Mutual labels:  vlc
Mrvlcplayer
一款基于VLC的播放器,支持常用的各大手势功能,支持几乎所有主流格式。
Stars: ✭ 359 (+1021.88%)
Mutual labels:  vlc
Vlc Ios
VLC for iOS and tvOS official mirror
Stars: ✭ 602 (+1781.25%)
Mutual labels:  vlc
Gcc termux
Gcc for termux with fortran scipy etc... Use apt for newest updates instructions in README.txt
Stars: ✭ 276 (+762.5%)
Mutual labels:  vlc
Legalstream
An m3u8 playlist featuring many LEGALLY FREE IPTV streams. For use with VLC.
Stars: ✭ 299 (+834.38%)
Mutual labels:  vlc
Nginx Rtmp Docker
Docker image with Nginx using the nginx-rtmp-module module for live multimedia (video) streaming.
Stars: ✭ 506 (+1481.25%)
Mutual labels:  vlc
libvlc-nuget
NuGet packaging setup for LibVLC
Stars: ✭ 52 (+62.5%)
Mutual labels:  vlc
Streamlink
Streamlink is a CLI utility which pipes video streams from various services into a video player
Stars: ✭ 6,883 (+21409.38%)
Mutual labels:  vlc
pyradio
📻 Play your favorite radio station from the terminal
Stars: ✭ 69 (+115.63%)
Mutual labels:  vlc
Pympress
Pympress is a simple yet powerful PDF reader designed for dual-screen presentations
Stars: ✭ 450 (+1306.25%)
Mutual labels:  vlc
Cordova Plugin Rtsp Vlc
PhoneGap/Cordova VLC RTSP Player Plugin
Stars: ✭ 21 (-34.37%)
Mutual labels:  vlc
Libvlcsharp
Cross-platform .NET/Mono bindings for LibVLC
Stars: ✭ 752 (+2250%)
Mutual labels:  vlc
Ffsubsync
Automagically synchronize subtitles with video.
Stars: ✭ 5,167 (+16046.88%)
Mutual labels:  vlc

py-vlcclient

This module allows to control a VLC instance using Python. This module uses the telnet interface of VLC and has no external dependencies.

More information about the telnet interface: http://wiki.videolan.org/Documentation:Streaming_HowTo/VLM

The clients supports some basic commands to modify playlists and control the playback.

How to Use

First start VLC and enable the telnet interface. You can either enable it when starting VLC::

   $ vlc --intf telnet --telnet-password admin

or with network access:

    $ vlc --intf telnet --telnet-password admin --lua-config "telnet={host='0.0.0.0:4212'}"

or via the menus (depending on your platform, mostly View -> Add Interface -> Telnet).

Example usage::

>>> from vlcclient import VLCClient
>>> vlc = VLCClient("::1")
>>> vlc.connect()
>>>
>>> r.add("/home/mitch/Music/a_song.ogg")
>>> r.volume(300)
>>> r.rewind()
>>> r.status()
'( new input: file:///.... )
 ( audio volume: 200 )
 ( state playing )'

Implemented Commands

The following commands are currently implemented:

generic

  • help
  • status
  • info

playlists and controls

  • add
  • enqueue
  • seek
  • play
  • pause
  • stop
  • rewind
  • next
  • prev
  • clear
  • loop
  • repeat
  • random

volume

  • volume (get/set)
  • volup
  • voldown
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].