alexballas / go2tv

Cast media files to UPnP/DLNA Media Renderers and Smart TVs.
MIT License
514 stars 52 forks source link

Video Loop functionality and UI improvements #8

Closed alexballas closed 3 years ago

20NE commented 1 year ago

No "Loop" option in CLI mode.

alexballas commented 1 year 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
20NE commented 1 year ago

Fair, I love go2tv so far, especially it can play http url media.