VideoHelp Forum
+ Reply to Thread
Results 1 to 13 of 13
Thread
  1. Member
    Join Date
    Mar 2016
    Location
    South Australia
    Search PM
    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
    Quote Quote  
  2. Member
    Join Date
    Mar 2016
    Location
    South Australia
    Search PM
    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
    Quote Quote  
  3. It just wraps the DV data into an AVI container.
    Quote Quote  
  4. Member
    Join Date
    Mar 2016
    Location
    South Australia
    Search PM
    Hey Jagabo. For some reason the GUI version could not rewrap the DV file to avi. So i tried the terminal version and it worked. Thank you so much.
    I have 32 files that vary from 1hour to 2hours long. Can ffmpeg cue up all the files to DV.avi and if so how?
    Quote Quote  
  5. 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"
    Each dv file is remuxed into an AVI with the same base name, eg, FILE.DV ---> FILE.AVI.
    Quote Quote  
  6. 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.
    Quote Quote  
  7. Member
    Join Date
    Mar 2016
    Location
    South Australia
    Search PM
    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 19:38.
    Quote Quote  
  8. Member
    Join Date
    Mar 2016
    Location
    South Australia
    Search PM
    Originally Posted by jagabo View Post
    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"
    Each dv file is remuxed into an AVI with the same base name, eg, FILE.DV ---> FILE.AVI.
    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 20:11.
    Quote Quote  
  9. ffmpeg isn't searching for the files. The batch file is searching for the files and passing each one to ffmpeg, one at a time. I'm sure you can do something similar on the Mac.
    Quote Quote  
  10. Member
    Join Date
    Mar 2016
    Location
    South Australia
    Search PM
    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?
    Quote Quote  
  11. 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
    You should be able to change the ffmpeg command line portion of the batch file to mux your dv to AVI. I think it will look something like:

    Code:
    for f in *.dv; do /Applications/ffmpeg -i "$f" -c copy  "${f%.dv}.avi"; done
    The batch file should be in the same folder as all the DV files. You'll probably have to change the path to ffmpeg from "/Applications/ffmpeg" to wherever ffmpeg is on your computer. I'm not sure about the final output name "${f%.dv}.avi", it might have to be "${f%}.avi".
    Quote Quote  
  12. Member
    Join Date
    Mar 2016
    Location
    South Australia
    Search PM
    Jagabo, thank you so much. This worked exactly as I wanted.
    I really appreciate your help.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!