Hi.
I have a bunch of historical files that were captured as QuickTime DV files.
A client would like to use these as windows (avi).DV files.
Im on a mac and have been testing the old QuickTime pro as an export tool. When i converted a 60 min file to avi, and tried to watch it back, I could only see around 7mins of it. I certainly exported the entire file so Im not sure why i can only see 7mins. The files size is close to the original at 14gb.
Is that the best way or can the file be demuxed without having to transcode it? The client is using Premiere to edit the videos.
Thanks
+ Reply to Thread
Results 1 to 13 of 13
-
-
Code:
ffmpeg -i input.dv -c copy output.avi
or ffmpegx: https://www.videohelp.com/software/ffmpegX -
Thanks Jagaboo. Ive just downloaded it. Is this to re-encode my quicktimeDV to windowsDV.avi? I can's seem to work out how it will help.
Thanks a lot -
You can do it with a batch file. I know how under Windows but not on a Mac. For all *.dv files in a folder:
Code:for %%f in (*.dv) do ffmpeg -i "%%~dpnxf" -c copy "%%~dpnf.avi"
-
Did your client try using your Quicktime dv files? I ask because I've found basically all of my PC software is agnostic as to whether dv files are wrapped in mov or avi. Macs are more fussy. Do you know what software your client is using?
7 minutes sounds like you may be hitting an ancient avi 2GB file size limit -- that the file isn't being recognized beyond that point. -
When i exported a 60min QTDV clip out of QTpro7 to DVAVI, I could not play more than 7mins. Neither could my client, who installed QT on their machine and is using Premiere to edit. He said the vision in QT looked terrible. VLC said there was something broken and did i want to fix it. I thought it could be a 2gb size limit, but did not know how to test for this.
When i exported the same file out using FFMPEG on terminal, not only was it blazingly fast, but my client could view the entire 60min clip. So could I. My client says the file info shows DVSD as the codec, My QT file info shows its DV.
Anyway, for now, it all works & Im looking at batching the next 31 videos.Last edited by Sir_Loin; 21st Jul 2021 at 18:38.
-
Jagabo, how do i instruct ffmpeg to search/batch a particular folder? My inexperience with code can't work out where the folder name would be placed.
In your previous code for a single file, i just dragged the file into terminal at the points where you indicated "input.dv" & "output.avi".
I understand you have provided a windows code. Im just hoping that it works for terminal aswell.Last edited by Sir_Loin; 21st Jul 2021 at 19:11.
-
Ok, so what you are saying is that somehow in terminal, i have to locate the folder, and then run a command similar to what you have written in windows?
-
Yes. A quick search found this example using ffmpeg to convert avi files to mp4 files:
https://pressanykey.simplyahobby.com/2021/06/06/using-ffmpeg-on-macos-to-correct-avi-i...onvert-to-mp4/
Code:for f in *.avi; do /Applications/ffmpeg -i "$f" -c copy -vcodec h264 -acodec aac "${f%.avi}.mp4"; done
Code:for f in *.dv; do /Applications/ffmpeg -i "$f" -c copy "${f%.dv}.avi"; done
-
Jagabo, thank you so much. This worked exactly as I wanted.
I really appreciate your help.
Similar Threads
-
Convert Variable FR MOV to Constant
By Alwyn in forum Video ConversionReplies: 4Last Post: 31st Oct 2020, 23:50 -
Convert ProRes .mov file to Bluray m2ts
By Rajesh Singh in forum Authoring (Blu-ray)Replies: 1Last Post: 1st May 2019, 14:54 -
Cannot convert 4K MKV to MOV or MP4 without color issues
By JDLangton in forum Video ConversionReplies: 9Last Post: 12th Nov 2018, 22:38 -
Best-quality tool to convert VOB/MPEG-2 to DV (AVI or MOV)
By moxiecat in forum Video ConversionReplies: 11Last Post: 5th Jan 2018, 05:16 -
Convert Color Matrix of MOV File
By koberulz in forum Newbie / General discussionsReplies: 24Last Post: 8th Nov 2016, 20:41