Difference between revisions of "Vlc-sync"

From Interaction Station Wiki
Jump to navigation Jump to search
 
(12 intermediate revisions by the same user not shown)
Line 7: Line 7:
  
 
=== Requirements ===
 
=== Requirements ===
 +
* Linux based operating system
 +
* A recent version of [https://www.python.org/downloads/ Python 3]
  
 +
=== Installing ===
  
 
+
<syntaxhighlight lang="bash">
=== Installing ===
 
<syntaxhighlight lang="shell">
 
 
python3 -m venv venv
 
python3 -m venv venv
 
pip install -r requirements.txt
 
pip install -r requirements.txt

Latest revision as of 12:04, 19 December 2023

vlc-sync is a modern adaptation of OMXPlayer-Sync, using VLC as a replacement for the deprecated OMXPlayer. This implementation facilitates the synchronization of multiple VLC instances across a network, following a conductor/follower model. You are also able to use a single conductor for a simple video loop.

Getting started

There are two ways to start using vlc-sync. Running the script manually or using the ready-to-use Raspberry Pi images.

Running vlc-sync

Requirements

  • Linux based operating system
  • A recent version of Python 3

Installing

python3 -m venv venv
pip install -r requirements.txt

Raspberry Pi images