Skip to main content

CLI helpers for VLC media player

Project description

A streamlined interface for precise video control and screenshot capture with VLC media player on Linux systems, built on the chloop REPL framework. This library provides D-Bus integration for real-time VLC control and vim-style keyboard navigation designed for interactive video analysis and content review workflows.

Linux-only requirements: This library uses D-Bus for VLC communication, ImageMagick for screenshot capture, and wmctrl for window management, making it compatible with Linux desktop environments only.

The core philosophy emphasizes precision and workflow optimization for users who need frame-accurate video navigation, timestamped screenshot capture, and immediate keyboard control during active video review. Rather than wrestling with VLC’s complex interface during detailed video work, vlc-helper reduces cognitive overhead by providing instant keyboard shortcuts and direct player control for essential playback functions.

Who benefits from this library: - Video editors and content creators reviewing footage frame-by-frame - Researchers analyzing video content with precise timestamp requirements - Educators creating timestamped video materials and screenshots - Quality assurance professionals testing video applications - Content reviewers needing rapid navigation and screenshot workflows - Anyone requiring precise video navigation during active viewing sessions

Install

Install system requirements for dbus-python package

sudo apt-get install -y pkg-config libdbus-1-dev libdbus-glib-1-dev

Install with pip

pip install vlc-helper

QuickStart

The vlc-repl and myvlc scripts are provided.

# Start VLC with precise timestamp control
myvlc video.mp4 "1h23m45s" "1h25m30s"  # Play from 1:23:45 to 1:25:30

# Or start the interactive controller for any running VLC
vlc-repl

Interactive Controls: - space - pause/unpause - s - take screenshot with timestamp in filename - i - show current file info and position - h/l - seek backward/forward (5 seconds) - H/L - seek backward/forward (30 seconds) - / - seek backward/forward (1 second, arrow keys) - n/p - next/previous file in playlist - K - kill all VLC processes

Colon Commands: - :seek 15 - seek forward 15 seconds - :go 1h23m45s - jump to specific timestamp

What you gain: Transform VLC from a general media player into a precision video analysis tool during active viewing. Capture perfectly timestamped screenshots, navigate to exact moments with single keystrokes, and maintain focus on content analysis rather than interface navigation. Essential for workflows requiring frame-accurate video review.

API Overview

High-Level Video Control

Interactive REPL Interface

  • ``repl`` - Pre-configured interactive controller for running VLC instances

    • Inherits from GetCharLoop for single-keystroke efficiency

    • chfunc_dict: Ordered dictionary mapping keys to VLC control functions

    • name: Collection name for logging (‘vlc’)

    • prompt: Display prompt (‘vlc-repl>’)

    • Returns: Interactive video control session

    • Internal calls: GetCharLoop.__init__, VLC() instance methods

Precise Video Launching

  • ``vlcstart_precise(filename=’’, starttime=’’, stoptime=’’, background=False)`` - Launch VLC with exact timing control

    • filename: Video file path (supports ~ expansion and relative paths)

    • starttime: Start timestamp in formats like ‘1h23m45s’, ‘2:15:30’, ‘300s’

    • stoptime: Optional end timestamp (VLC stops playback automatically)

    • background: If True, launch without blocking using SimpleBackgroundTask

    • Returns: None (launches VLC process for interactive control)

    • Internal calls: ih.timestamp_to_seconds, SimpleBackgroundTask

  • ``play_many(*filenames, background=False)`` - Launch VLC with multiple files in playlist

    • *filenames: Multiple video file paths

    • background: If True, launch without blocking

    • Returns: None (launches VLC with playlist for interactive control)

    • Internal calls: SimpleBackgroundTask

VLC Player Control

VLC Class - D-Bus Interface

  • ``VLC()`` - D-Bus interface for controlling running VLC player instances

    • Auto-connects to VLC via MPRIS (Media Player Remote Interfacing Specification)

    • Handles connection failures with automatic VLC startup and reconnection

    • Returns: VLC control object with real-time playback and metadata access

    • Internal calls: vlcstart_precise()

Playback State Management

  • ``VLC.toggle_pause()`` - Toggle play/pause state

    • Returns: None (changes playback state immediately)

    • Internal calls: None

  • ``VLC.next()`` - Skip to next file in playlist

    • Returns: None (advances to next track)

    • Internal calls: None

  • ``VLC.previous()`` - Skip to previous file in playlist

    • Returns: None (goes to previous track)

    • Internal calls: None

Video Information and Metadata

  • ``VLC.position`` (property) - Current playback position in seconds

    • Returns: Float representing current video position

    • Internal calls: None

  • ``VLC.filename`` (property) - Current video filename without path

    • Returns: String basename of currently playing file

    • Internal calls: None

  • ``VLC.dirname`` (property) - Directory path of current video

    • Returns: String directory path (handles file:// URLs)

    • Internal calls: None

  • ``VLC.window_title`` (property) - VLC window title for external tool targeting

    • Returns: String window title suitable for ImageMagick import command (uses wmctrl)

    • Internal calls: None

  • ``VLC.info`` (property) - Combined metadata dictionary

    • Returns: Dict with ‘filename’, ‘dirname’, ‘position’, ‘window_title’

    • Internal calls: VLC.position, VLC.filename, VLC.dirname, VLC.window_title

  • ``VLC.show_info(fmt=’{position} {dirname}/{filename}’)`` - Display formatted video information

    • fmt: Format string template for display

    • Returns: None (prints current video state)

    • Internal calls: VLC.info

Screenshot Capture

  • ``VLC.screenshot()`` - Capture current frame with timestamped filename

    • Returns: None (saves PNG with format: screenshot–filename–timestamp.png using ImageMagick)

    • Internal calls: VLC._screenshot(), SimpleBackgroundTask

  • ``VLC.killall()`` - Force terminate all VLC processes

    • Returns: None (kills processes with escalating signals)

    • Internal calls: None

REPL Interactive Interface

REPL Class - Interactive Controller

  • ``REPL(chfunc_dict, name=’vlc’, prompt=’vlc-repl> ‘)`` - Interactive video controller with vim-style keybindings

    • chfunc_dict: Ordered dictionary mapping keys to VLC control functions

    • name: Collection name for logging

    • prompt: Display prompt

    • Inherits from GetCharLoop for single-keystroke efficiency

    • Returns: Interactive video control session

    • Internal calls: GetCharLoop.__init__

REPL Command Methods

  • ``REPL.seek(num)`` - Seek by specified number of seconds (colon command)

    • num: Seconds to seek (string converted to float)

    • Returns: None (calls VLC.seek for immediate response)

    • Internal calls: VLC.seek()

  • ``REPL.go(timestamp)`` - Jump to specific timestamp (colon command)

    • timestamp: Target time in supported formats

    • Returns: None (calls VLC.go for precise navigation)

    • Internal calls: VLC.go()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vlc_helper-0.1.9-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file vlc_helper-0.1.9-py3-none-any.whl.

File metadata

  • Download URL: vlc_helper-0.1.9-py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for vlc_helper-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 ec96a5dc46893df96d146c19f21f012699066fd5c0b7b4d392df0c933d978332
MD5 1fe513c1763eaa2ca8f6d05753327cd9
BLAKE2b-256 1af5e2d6e72f031f4a37e7ea34fb5133a7d3076abc583ac342eac1949fc8c09d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page