Qual é a sintaxe para 'repetir A para B' um clipe de vídeo usando a linha de comando VLC?

0

Podemos repetir um clipe do ponto A ao ponto B, chamado repeat A to B , como discutido aqui .

Eu preciso fazer isso usando a linha de comando do VLC. Como posso fazer isso?

    
por Nam G VU 14.06.2014 / 15:09

1 resposta

1

Acredito que o seguinte é o que você está procurando:

--start-time starts the video here; the integer is the number of seconds from the beginning (e.g. 1:30 is written as 90)

--stop-time stops the video here; the integer is the number of seconds from the beginning (e.g. 1:30 is written as 90)

--repeat repeats current item until another item is forced

Por exemplo

vlc movie.avi --start-time 240 --stop-time 560 --repeat

Fonte: link

    
por 19.06.2014 / 19:37