I have a WMV file I'm trying to edit and convert to MP4 using Avidemux. When opening the file, I get:
This video contains B-frames, but the presentation time stamps (PTS) are either missing or monotonically increasing. Avidemux can try to reconstruct correct PTS by decoding the entire video. This may take a lot of time. Proceed?
When I try to convert it, Avidemux crashes and closes.
+ Reply to Thread
Results 1 to 7 of 7
-
-
Try deselecting the audio (from "audio" at the top) and just encoding the video.
If this works you can save the audio to uncompressed WAV by opening the source in Audacity (with the FFmpeg supplement installed
so it can access the file), then expoting it to a WAV file. Then use this as audio input to Avidemux after deselecting the original stream audio
Another method is to create a new lossless intermediate, then open that in Avidemux, do your editing, then save to
the format of your choice.
You can use a simple FFmpeg command to create the new source. It wil be big, as it's lossless
Code:ffmpeg.exe -i in.wmv -c:v libx264 -crf 0 -c:a pcm_s16le out.mkv
Last edited by davexnet; 24th Apr 2022 at 00:14.
-
-
-
If your audio source was 5.1 then it might be 2.0 with the wrong encoding missing the main audio tracks.
I think,therefore i am a hamster. -
Never mind. I don't know what went wrong the first time, but it's fine now. I used the first method you recommended. Thanks!
Similar Threads
-
Avisynth+ and grabbing x frames every y frames? I'd like to sample a clip
By Msuix in forum EditingReplies: 2Last Post: 11th May 2021, 15:41 -
Patch encoder to force P-Frames to only reference I-Frames
By zombiitv in forum ProgrammingReplies: 1Last Post: 9th Sep 2019, 21:51 -
Add logo from X frames to X Frames
By sulkiyan in forum EditingReplies: 3Last Post: 5th May 2018, 00:26 -
Can I force ffmpeg to transcode 59.94 frames to display at 25 frames per se
By oduodui in forum EditingReplies: 4Last Post: 28th Apr 2018, 09:24 -
Replace random duplicate frames with black frames (AVISYNTH)
By benzio in forum EditingReplies: 7Last Post: 31st Jan 2018, 16:43