Summary: | Rendering with chapters | ||
---|---|---|---|
Product: | [Applications] kdenlive | Reporter: | mau <b-misc> |
Component: | Rendering & Export | Assignee: | Jean-Baptiste Mardelle <jb> |
Status: | REPORTED --- | ||
Severity: | wishlist | CC: | fritzibaby, jlp, kde.bugs |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
mau
2022-03-26 16:42:44 UTC
My current workflow is: Right-Clicking the timeline, exporting the guides as `{{frame}} {{comment}}` And the next step I do by hand (which is okayish for a handful of chapters). I turn this list from ``` 0 Name of Chapter 1 1230 Name of Chapter 2 5321 Name of Chapter 3 ``` into ``` ;FFMETADATA1 [CHAPTER] TIMEBASE=1/30 START=0 END=1229 title=Name of Chapter 1 [CHAPTER] TIMEBASE=1/30 START=1230 END=5320 title=Name of Chapter 2 [CHAPTER] TIMEBASE=1/30 START=5321 END=8000 title=Name of Chapter 3 ``` (assuming 30 fps, hence the somewhat uncommon TIMEBASE=1/30) Which I then integrate with ffmpeg after the fact, (as written by mau in the previous comment) It would be amazing to have this as a checkable box within the render interface instead. As a first step, this export dialog could likely be enhanced to produce the `FFMETADATAFILE` directly: https://invent.kde.org/multimedia/kdenlive/-/blob/master/src/dialogs/exportguidesdialog.cpp Git commit 20107347fcbb25ecfc3eeee8e372bc28b6d1220d by Jean-Baptiste Mardelle. Committed on 28/07/2023 at 09:20. Pushed by mardelle into branch 'master'. Add option to export guides as FFmpeg chapter file M +10 -5 src/bin/model/markerlistmodel.cpp M +43 -4 src/dialogs/exportguidesdialog.cpp M +1 -0 src/dialogs/exportguidesdialog.h M +87 -69 src/ui/exportguidesdialog_ui.ui https://invent.kde.org/multimedia/kdenlive/-/commit/20107347fcbb25ecfc3eeee8e372bc28b6d1220d |