+ Reply to Thread
Results 3,151 to 3,157 of 3157
-
@ ProWo
v3.4.9.01 feedback
FIXED: Processed video streams does not appear in the mux grid!
---
> Bottom left.
Sorry, operational blindness!Last edited by Findu; 26th Nov 2025 at 10:23.
-
TRY THIS
ffmpeg -i input.mp4 ^
-map 0 ^
-c copy ^
-movflags use_metadata_tags ^
-movflags +faststart ^
-bsf:a aac_adtstoasc ^
-avoid_negative_ts make_zero ^
-fflags +bitexact ^
output.mp4
With Chapters (IMPORT) ;FFMETADATA1
ffmpeg -i input.mp4 ^
-i chapters.txt ^
-map 0 ^
-c copy ^
-movflags use_metadata_tags ^
-movflags +faststart ^
-bsf:a aac_adtstoasc ^
-avoid_negative_ts make_zero ^
-fflags +bitexact ^
-map_chapters 1 ^
output.mp4
With Chapters (IMPORT) ;FFMETADATA1 and Without Subs
ffmpeg -i input.mp4 ^
-i chapters.txt ^
-map 0:v ^
-map 0:a ^
-c copy ^
-movflags use_metadata_tags ^
-movflags +faststart ^
-bsf:a aac_adtstoasc ^
-avoid_negative_ts make_zero ^
-fflags +bitexact ^
-map_chapters 1 ^
output.mp4 -
@OFLU
Tried. What's the diffrence. Clever..also does the same thing. I always do my work encoding/muxing with CFFmpeg GUI and finally a touch up of the mux with MP4Box. That's it...you get the perfect MP4. Who uses command lines if you have the GUI to do all the work !TRY THIS -
@OFLU
Improved FFmpeg Command
Key ImprovementsCode:ffmpeg -hide_banner -i input.mp4 ` -i chapters.txt ` -map 0:v ` -map 0:a ` -c:v libx264 -preset medium -crf 23 ` -c:a aac -b:a 192k ` -map_chapters 1 ` -movflags +faststart ` -fflags +bitexact ` -avoid_negative_ts make_zero ` -bsf:a aac_adtstoasc ` -filter_complex "[0:v][0:a]strip=remove_gps=1,strip=remove_tmcd=1[v][a]" ` -map "[v]" -map "[a]" ` output.mp4
- Added stream stripping to remove GPS and TMCD metadata
- Added -hide_banner for cleaner output
- Explicit video and audio codec settings
- Used filter_complex to remove unwanted metadata streams
Optimization Breakdown
Metadata:
- Removes GPS and TMCD streams
- Preserves chapter informationThere is nothing wrong .. with my environment -
In the mux grid, hitting the Enter key moves the focus down. You can do that with the down arrow key. Can you make it so that hitting the Enter key checks/unchecks the boxes? Thanks.
-
@ ProWo
v3.4.9.01 feedback
I noticed that with 3.4.9.01, the construction of the Mux grid has slowed down. You can now see the automatic column width adjustment for a short moment.
[Attachment 89952 - Click to enlarge]
[Attachment 89953 - Click to enlarge]
EDIT:
It also looks as if the entire app window increases in size by 10% when the app image is rendered.Last edited by Findu; 26th Nov 2025 at 14:25.
Similar Threads
-
GUI for ffmpeg x265 encoder
By david55 in forum Video ConversionReplies: 15Last Post: 11th May 2025, 10:15 -
New small GUI for FFmpeg
By ProWo in forum Video ConversionReplies: 29Last Post: 24th Feb 2024, 03:06 -
Best GUI for ffmpeg encoding
By usta in forum Video ConversionReplies: 25Last Post: 17th Jan 2019, 12:23 -
GUI for FFMpeg amf?
By Micky in forum Video ConversionReplies: 0Last Post: 14th Jan 2018, 08:45 -
dmMediaEncoder v1.8.0 - crossplatform FFMPEG GUI
By mdalacu in forum Video ConversionReplies: 38Last Post: 29th Sep 2015, 01:19



Quote