0

We can repeat a clip from point A to point B, called repeat A to B, as discussed here.

I need to do this using VLC command line. How can I do that?

Nam G VU
  • 12,146
  • 60
  • 135
  • 209

1 Answers1

2

I believe the following is what you're looking for:

--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

For example

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

Source: https://wiki.videolan.org/Documentation:Command_line/

tbenz9
  • 6,987
  • 3
  • 29
  • 32