Closed alexballas closed 3 years ago
No "Loop" option in CLI mode.
This is true, I did not implement loop mode in the CLI. Mainly due to the fact that CLI is more versatile and it's easier to script some logic outside Go2TV to do that. For example you could:
loop a single video file
while [ 1 ];do
go2tv -v somefile.mp4
sleep 1
done
or play all files in a folder one at a time
for i in *.mp4;do
go2tv -v $i
sleep 1
done
Fair, I love go2tv so far, especially it can play http url media.
No "Loop" option in CLI mode.