I'm working on a project in Sony Vegas and have rendered my files in MXF format (1 video stream MPEG 35.0 Mb/s, 2 audio streams 48.0kHz, 24 bits, PCM/PCM, according to MediaInfo).
The rendered files look and sound great in VLC.
When these files are added to a DVDStyler project, that section has no sound.
I added an mp3 to the menu screen as a background track and that sounds just fine.
That loops and works great.
It's only the mxf files that have no audio.
Any help would be greatly appreciated.
-thanks
+ Reply to Thread
Results 1 to 3 of 3
-
-
Can DVD Styler import separate video and audio streams? I think it should. So that one without audio can be demuxed.
Code:@echo off SET ffmpeg="C:\your_path_to_ffmpeg\ffmpeg.exe" echo demuxing video ... %ffmpeg% -y -i "%~d1%~p1%~n1.mxf" -c:v copy -an -sn "video.m2v" rem this would merge two audio channels into one stereo if you needed rem echo demuxing audio ... rem %ffmpeg% -y -i "%~d1%~p1%~n1.mxf" -map 0:1 -map 0:2 -c:a:0 pcm_s16le -c:a:1 pcm_s16le -filter_complex amerge -f wav "audio.wav" pause
Similar Threads
-
Embedding Metadata into MXF files
By Etoma333 in forum SubtitleReplies: 0Last Post: 7th Dec 2017, 15:58 -
FFMPEG converting GoPro files into avid - mp4 - mov - mxf
By Phillipj in forum Video ConversionReplies: 8Last Post: 16th May 2016, 06:56 -
avisynth 2.6 + ffms2 2.22: why don't open mxf (mpeg2) video files?
By marcorocchini in forum Newbie / General discussionsReplies: 0Last Post: 6th Sep 2015, 13:19 -
Extracting multiple audio streams from MXF
By nesburf in forum AudioReplies: 4Last Post: 8th Jun 2015, 17:51 -
Unable to load MXF Files to Adobe Media Encoder CS6
By Carl Enslin in forum Video ConversionReplies: 2Last Post: 19th Feb 2015, 22:28