skillfed

aiovlc

Control VLC over telnet connection using asyncio

aiovlc v0.7.0 73.9K downloads/30d#14,912 on PyPI3
Permissive license Apache-2.0 Active released

What it is and what it does

aiovlc is a Python library that lets you control a running VLC media player instance over a telnet connection using asyncio. It wraps VLC's telnet remote control protocol in an async-friendly interface, enabling non-blocking, concurrent control of playback, volume, playlists, and other VLC functions from your Python code.

The package is lightweight with no external runtime dependencies, making it straightforward to integrate into async applications. It targets Python 3.13 and later and is actively maintained, though it remains in Alpha status with a small adoption base. It's useful for automation, testing, or building custom media control interfaces that need to communicate with VLC asynchronously.

Use it for:

  • Automate VLC playback in test suites or CI/CD pipelines that need non-blocking media control.
  • Build async media control dashboards or remote interfaces that send commands to VLC over the network.
  • Orchestrate multiple VLC instances concurrently from a single Python application.
  • Integrate VLC control into event-driven or reactive applications using asyncio.
  • Monitor and control VLC playback state from a separate service or monitoring tool.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Control VLC media player over a telnet connection using Python's asyncio for non-blocking, concurrent operation.

Yes, if you need to control VLC from Python code using asyncio and can accept Alpha-stage software. The low install friction, permissive license, active maintenance, and zero runtime dependencies make it a reasonable choice for automation or integration tasks. The small user base and early maturity mean you should verify telnet setup requirements and test error handling for your use case before relying on it in production.

Install

aiovlc on PyPI

pip

pip install aiovlc

uv

uv add aiovlc

poetry

poetry add aiovlc

Installing aiovlc

Before you install

Low install friction with no runtime dependencies. Actively maintained as of August 2026 with recent commits, though early-stage (Alpha) and a small user base.

License in practice

Licensed under Apache-2.0 (permissive), allowing use in commercial and proprietary projects with minimal restrictions.

Quickstart

pip install aiovlc

import asyncio
from aiovlc import VLC

async def main():
    vlc = VLC(host='localhost')
    await vlc.connect()
    await vlc.disconnect()

asyncio.run(main())

Requires Python 3.13 or later; VLC must be running with telnet interface enabled on the target host.

Verify before relying

  • Default telnet port and whether VLC telnet interface setup is documented or automated by the package.
  • Supported VLC versions and any compatibility constraints beyond Python version.
  • Error handling and reconnection behavior for network interruptions.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.13)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance actively maintained — 161 days since the last release
Last repo commit
First released
Downloads 73,898/month — #14,912 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: aiovlc-0.7.0-py3-none-any.whl

Development Status :: 3 - AlphaIntended Audience :: DevelopersNatural Language :: EnglishOperating System :: OS IndependentProgramming Language :: Python :: 3.13Programming Language :: Python :: 3.14Topic :: Software Development :: Libraries

Tags

vlc remote control asynciotelnet vlc automationasync vlc clientvlc media player controlpython vlc telnet
vlc-controlasynciotelnet

More Libraries packages