I don't know why I'm getting this.
I'm just wanting to change the container and DAR (Display Aspect Ratio) of my file.
I used Reaper to cut the video, edit the audio, and export (via FFmpeg) to the destination format I want which is for YouTube, MP4, H.264 (95% Quality?), AAC Stereo 384 kbps. The only problem is that Reaper does not preserve the DAR, so what should be displayed as SD (720x480), wide screen 16:9 is output as 4:3 aspect ratio. Additionally, the output option in Reaper is a combination QT/MOV/MP4, meaning you cannot select between these containers, so the output file is MOV when selecting H264/AAC.
Essentially, I want Video To Video to pass through (Copy) the actual video and apply the correct DAR and change the container from MOV to MP4. I want the audio to pass though as well since it is already the correct codec/bitrate.
I modified the conversion preset "MP4" to these settings:
Video Options
Video Codec = Copy
Video Aspect = 16:9
Video Bitrate = 4000
Audio Options
Audio Codec = Copy
Audio Bitrate = 384
Advanced
Keep Aspect (letterbox) = No
Please advise, thanks.
I doubt that it is very import to change the container at all, but I do want to correct the DAR at least. Right now the video is 4:3 and looks vertically stretched.
P.S. I'm using the portable version of Video To Video v2.9
+ Reply to Thread
Results 1 to 9 of 9
-
-
-
That error indicates that Video To Video is passing a bad command line to FFmpeg. It should be easy enough to do it yourself at a command prompt.
Code:<path to/>ffmpeg -i myfile.mov -c copy -aspect 16:9 myfile.mp4
-
Ok, thanks you all.
I'll give it a try, though, I've never used FFmpeg from the Command Prompt before.
Reaper utilizes the FFmpeg libraries by copying the DLLs into its install folder and uses VLC for playback. I've been using Video To Video since a GUI is preferable to me and there was a portable version.
I tried WinFF, but it altered the actual video aspect ratio and the resultant file was about 1/3 the original. I don't know what else it compressed to reduce the file size so much. The resulting aspect ratio was 704x386 which was not what I had expected. It definitely looks blurrier than the original MOV file.
I found some directions for using command line FFmpeg here:
http://www.wikihow.com/Install-FFmpeg-on-Windows
And, there are some warnings regarding the manual Registry edits that need to occur. I don't think my boss would be too happy if I bricked my work laptop.
Thank you for your assistance.
Maybe I should be in the Newbie forum area, but this seemed like the appropriate place for this question. -
Thank you all a lot!
I used WinFF and created a new preset using the parameters you gave me. I had a lot of files to convert, so I thought using WinFF was easier than learning to batch process the files from the Command Prompt considering that the file location was pretty lengthy.
Creating my own preset in WinFF wasn't quite as straightforward as I expected, but I was able to get it. These are the steps in case anyone stumbling upon this thread wants to know.
Edit > Presets...
From the Presets dialog box I selected Category=MPEG-4, Preset=MP4 Widescreen
Changed the Preset Name & Preset Label to new, custom names
Changed the Preset Command Line Parameters to: -f mp4 -vcodec copy -aspect 16:9 -acodec copy
Left the Output File Extension the same and the Category the same and clicked Add/Update > OK, then Save
Once the custom preset was made I was able to Add all my files and they were converted in no time.
There was this warning in Yellow in the Command Prompt window that pops up as the files are converted:
Overriding aspect ratio with stream copy may produce invalid files
Although, the files play just fine in VLC.
Again, I really appreciate your help! -
Hi guys, was trying to download a video on the Express.
https://www.express.co.uk/news/uk/938824/Germany-news-duisburg-state-of-emergency-figh...-riot-machetes
I was using this code:
Code:ffmpeg -re -i https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=5760345216001&secure=true&pubId=2540076170001&videoId=5760343636001 -c copy -bsf:a aac_adtstoasc video.mp4
At least one output file must be specified
Anyone know what I'm doing wrong? -
Use quotation marks around your url.
Code:ffmpeg -re -i "https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=5760345216001&secure=true&pubId=2540076170001&videoId=5760343636001" -c copy -bsf:a aac_adtstoasc video.mp4
Similar Threads
-
Error Playing AVC Advanced Video Codec .TS File
By jenisbob in forum DVB / IPTVReplies: 1Last Post: 9th Mar 2016, 10:11 -
What kinds of video output come from a video mixer?
By Haopengyou in forum Video Streaming DownloadingReplies: 0Last Post: 1st Mar 2016, 12:23 -
ImTOO Video Converter Ultimate 6, audio-video synchronization error
By Mållgan in forum Video ConversionReplies: 1Last Post: 18th Jun 2013, 06:40 -
Creating a video file from a DTS file with blank/still image video
By vdgg in forum AudioReplies: 8Last Post: 31st Oct 2012, 00:41 -
VirtualDub File [path] does not have a video stream error
By fershad in forum Video ConversionReplies: 4Last Post: 25th Jan 2012, 06:11