I found an alternative solution for finding the right place via chapters #1
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
You can write chapters into the metadata of video and audio files with ffmpeg:
copy metadata:
ffmpeg -i FRIDAY_JAMS_WITH_ariathome_\[v1830087678\].mp4 -f ffmetadata meta.txt
add the following:
Write metadata to file:
ffmpeg -i FRIDAY_JAMS_WITH_ariathome_\[v1830087678\].mp4 -i meta.txt -map_metadata 1 -map_chapters 1 -codec copy FRIDAY_JAMS_WITH_ariathome_\[v1830087678\]_chaps.mp4
Result:
Those markings are the chapters and you can jump between them, list them with title and all.
I found a alternative solution for finding the right place via chaptersto I found an alternative solution for finding the right place via chaptersI chose a timebase (resolution) of 1s. (
TIMEBASE=1/1
)It is also possible to use milliseconds:
TIMEBASE=1/1000
andSTART=1929000
...Nice way! Because I prefer to have smaller files, one can create an option to save chapters as tags. I want to keep chapterfiles as default.
Feel free to create a pull request!