1. 05 Sep, 2008 7 commits
  2. 04 Sep, 2008 30 commits
  3. 03 Sep, 2008 3 commits
    • Antoine Cellerier's avatar
      355d80f1
    • Antoine Cellerier's avatar
      Add placeholder feature to bridge module ("No Signal" anyone?) · 39dcd7cc
      Antoine Cellerier authored
      This commit allows using the bridge-out and bridge-in module to
      configure a placeholder stream. This placeholder stream replaces the
      input stream if it dies for more than place-holder ms.
      
      Example configuration:
       # The input
       new test broadcast enabled
       setup test input /home/antoine/media/wall-e/Sample.avi
       setup test output #duplicate{dst=bridge-out,select=video,dst=bridge-out,select=audio}
      
       # The placeholder
       new master broadcast enabled
       setup master input /home/antoine/media/wall-e/wall-e.avi
       setup master output #bridge-in{placeholder,placeholder-delay=5000}:display
      
       # control test play
       control master play
      
      Placeholder and input should have the same format (aspect ratio, dimension,
      codec, ...). Connect to VLC's telnet interface and issue some
      "control test play" and "control test stop" commands to simulate input loss.
      The placeholder stream should kick in after 5000 ms (5 s) of input loss.
      39dcd7cc
    • Antoine Cellerier's avatar
      Make it possible to have more than one bridge in a VLC instance · 299bbb55
      Antoine Cellerier authored
      This commit adds an in-name property to bridge-out and a name property
      to brige-in which allows selecting which bridge-out go to which bridge-in
      modules. Default behvior is unchanged (everything goes to the same
      bridge-in).
      299bbb55