Is there a way to manipulate VLC with a Linux shell script without the script waiting for VLC to close.
cvlc test.mp3
echo "Now playing!"
sleep 200
cvlc://pause:60
This code keeps running vlc until the file is completed.
|
You need to use dbus interface of VLC.
Now, you can use the mpris interface of VLC. It's a standard for most players like clementine, banshee, songbird, spotify etc. So, lets suppose you want to Pause the currently playing song.
To play a song:
I generally use qdbusviewer to know about the dbus-interface available to me. |
|||||||
|
|
It looks like you can redirect from standard input or a named pipe. For more complicated things you could use libvlc. |
|||
|
|
cvlc test.mp3 &? – Tomas Jan 20 '12 at 15:10