Hello. I'd like to change parameters of multiple AVI files at once to make them playable.
My current workflow on single file:
1. MPEG4Modifier - packed bitstream unpack
2. MPEG4Modifier change user data (Writing library from something like DivX503b2682p to XviD0069
3. Visual AVI FourCC Changer (https://sourceforge.net/projects/vsfccchanger/) - change fourCC - this works for all files
And I know I can do steps 1 and 3, e.g with FFMPEG with stream copy, but I'm not sure how to automatize step 2
this command did not change writing library:
Code:ffmpeg -i input.avi -vtag XVID -bsf:v mpeg4_unpack_bframes -c:v copy -c:a copy output.avi
+ Reply to Thread
Results 1 to 6 of 6
-
-
-
But this just change fourCC not "writing library"
after that command ffmpeg Mediainfo shows:
when editing with MPEG4Modifier I getCode:Codec ID : FMP4 Writing library : DivX 2682
And this file works correctly for meCode:Writing library : XviD 69
-
OK, but this file is playable or not?
The “writing library” is just an information tag and should not affect the video's playbackwhen editing with MPEG4Modifier I get
And this file works correctly for meCode:Writing library : XviD 69
-
Unfortunately the file is unplayable until I change writing library... This is LG Oled 4k TV bought about 2021.
-
I worked on this & part of the problem is the .avi container.
It has limits on what can be written to in it's metadata.
I was never able to get the metadata to accept "Writing library".
What I got was "Writing application" in MediaInfo.
Give this code a try:
Code:ffmpeg -i input.avi -flags +bitexact -fflags +bitexact -map_metadata -1 -metadata:g "ISFT=XviD 69" -metadata:g "encoding_tool=XviD 69" -metadata title="movie name" -c copy output.avi
Similar Threads
-
Change fourCC of Divx3 Low to XVID
By SmurfRecorder in forum Video ConversionReplies: 1Last Post: 8th May 2025, 07:27 -
Method to batch rencode of video library.
By einstein1969 in forum Video ConversionReplies: 21Last Post: 12th Nov 2023, 06:34 -
Stripping "Writing Library" & "Encoding Settings" Metadata Off a File While
By simon744 in forum Video ConversionReplies: 0Last Post: 14th Aug 2023, 10:53 -
Convert movies to Xvid 1.1.2 writing library?
By Emilumin in forum Newbie / General discussionsReplies: 5Last Post: 20th Dec 2022, 17:06 -
Convert Divx to Xvid batch
By nick7461 in forum Video ConversionReplies: 8Last Post: 2nd Oct 2021, 11:37


Quote
