Page 1 of 1

Save a looped section

Posted: 03 Nov 2021 14:04
by Headtea
VLC allows looping through a section using the A to B loop feature.

Thing is, it doesn't save it into a file. Is it possible to create a file that would endlessly loop from A to B?

Preferably by using execution parameters such as

Code: Select all

--start-time="2059"
Thanks ahead!

Re: Save a looped section

Posted: 04 Nov 2021 09:53
by chubinou
you can't define A-B from command line, the best you can do I think is something like this:

vlc --repeat --start-time=10 --stop-time=20 /path/to/media.mkv

Re: Save a looped section

Posted: 06 Nov 2021 12:26
by Headtea
It worked, thank you so much!