Quote:
Originally Posted by deltathing
is there a way to enact an endless video loop? untill the process is killed by me?
|
Place the "producer" side or the whole instruction in a loop, I'd say:
Code:
while true; do zcat vid.gmv.gz; done | ./gmplay
or
Code:
while true; do zcat vid.gmv.gz | ./gmplay; done