Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Media file management > Converting audio/video files
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 11-12-2007, 07:39 AM
bobby_yan bobby_yan is offline
Junior Member
 
Join Date: Nov 2007
Posts: 14
bobby_yan is on a distinguished road
Default

How to convert mov (MPEG4 + AAC) to avi without re-encoding?


Is there any tool? Thank you. The file information is as follows.

General #0
Complete name : D:\20030901.mov
Format : QuickTime
Format/Info : Original Apple specifications
Format/Family : MPEG-4
File size : 816 MiB
PlayTime : 1h 6mn
Bit rate : 1707 Kbps
StreamSize : 2.09 MiB

Video #0
Codec : MPEG-4 Visual
Codec profile : Streaming Video Profile/Level 1
Codec settings/BVOP : Yes
Codec settings/QPel : No
Codec settings/GMC : 0
Codec settings/Matri : Default
PlayTime : 1h 6mn
Bit rate : 1574 Kbps
Width : 720 pixels
Height : 540 pixels
Display Aspect ratio : 4/3
Frame rate : 24.000 fps
Resolution : 8 bits
Interlacement : Progressive
Bits/(Pixel*Frame) : 0.165
StreamSize : 752 MiB
Title : Lsj-云居龙龙。 / Lsj-云居龙龙。

Audio #0
Codec : AAC LC
Codec/Info : AAC Low Complexity
PlayTime : 1h 6mn
Bit rate : 128 Kbps
Bit rate mode : CBR
Channel(s) : 2 channels
Channel positions : L R
Sampling rate : 44 KHz
Resolution : 16 bits
StreamSize : 61.2 MiB
Title : Lsj-云居龙龙。 / Lsj-云居龙龙。
Reply With Quote
  #2  
Old 11-12-2007, 10:46 AM
Stream Recorder
 
Posts: n/a
Default

How to convert .MOV (MPEG-4 Visual + AAC) to .MP4 without re-encoding?


.AVI is outdated. AVI doesn't support VBR audio (actually AVI specs do support it, but software using ACM to read audio from AVI files will not be able to handle VBR audio streams correctly, even though such files are compliant to the AVI file specification).

If your .MOV file contains AAC audio with variable bit-rate and you don't the AAC audio to be converted, you can use other containers for MPEG-4 video: MP4, MKV, OGM.

.MOV container is based on .MP4. And it seems like you can safely rename .MOV files to .MP4 in most cases.

But Apple always like to create standards not supported by other software and hardware. No wonder QuickTime 7 added support of multichannel audio (used, for example, in the high-definition trailers on Apple's site) to .MOV container while the original MP4 container is limited to stereo only. Therefore multichannel audio must be re-encoded during MP4 export.

In the MPEG-4 Export dialog of the QuickTime Pro use an option called Passthrough to do a .MOV lossless conversion (export) to .MP4 without affecting the audio or video streams.
Reply With Quote
  #3  
Old 11-12-2007, 11:04 AM
Stream Recorder
 
Posts: n/a
Default

AviSynth: How to convert create .AVS file that can open .QT and .MOV QuickTime files


If you install AviSinth and QTReader plug-in you can create an .avs file with the following content:
Code:
LoadVFAPIPlugin("d:\program files\virtualdub\plugins\QTReader.vfp", "QTReader")
QTReader("D:\20030901.mov")
or with a more complex one:
Code:
LoadVFAPIPlugin("d:\program files\virtualdub\plugins\QTReader.vfp", "QTReader")
QTReader("D:\20030901.mov")
ConvertToYUY2()
FlipVertical()
SelectEvery(25,1)
If you have QuickTime 6 (for getting video only) or QuickTime 7 (for both audio and video) you can use:
Code:
# YUY2 (default):
QTInput("D:\20030901.mov", color=2)
or
Code:
# with audio (in many cases possible with QuickTime 7)
QTInput("D:\20030901.mov", color=2, audio=true)
or
Code:
# raw (with for example a YUYV format):
QTInput("D:\20030901.mov", color=2, mode=1, raw="yuyv")
or
Code:
# dither = 1; converts raw 10bit to 8bit video (v210 = 10bit uyvy):
QTInput("D:\20030901.mov", color=2, dither=1, raw="v210")
.AVS file can beopened with freeware VirtualDub.
Attached Files
File Type: txt d_mov.avs.txt (108 Bytes, 0 views)
Reply With Quote
  #4  
Old 11-18-2007, 05:54 AM
bobby_yan bobby_yan is offline
Junior Member
 
Join Date: Nov 2007
Posts: 14
bobby_yan is on a distinguished road
Default

Re: How to play .MOV and .QT files with QT Alternative and AviSynth


I have installed QT Alternative 1.95 & AviSynth 2.5 Alpha 2.
When open .AVS file with the following content
Code:
DirectShowSource("D:\20030901.mov")
I get the following message.
Quote:
"Avisynth open failure: DirectShowSource: could not open as video or audio."

Video returned: "DirectShowSource: couldn't open file D:\20030901.mov:
unable to play, unsupported file type."

Audio returned: "DirectShowSource: couldn't open file D:\20030901.mov:
unable to play, unsupported file type."

(D:\avisynth.avs, line 1)
But I can play the file with the media player classic, which is integrated in the QT Alternative installation file.
Reply With Quote
  #5  
Old 09-30-2009, 01:25 PM
kaysaith
 
Posts: n/a
Default

Re: How to play .MOV and .QT files with QT Alternative and AviSynth


Quote:
Originally Posted by bobby_yan View Post
I have installed QT Alternative 1.95 & AviSynth 2.5 Alpha 2.
When open .AVS file with the following content
Code:
DirectShowSource("D:\20030901.mov")
I get the following message.


But I can play the file with the media player classic, which is integrated in the QT Alternative installation file.
i have the same problerm, but now i fix it !
the way is that i install the quicktime 7 !
Reply With Quote
  #6  
Old 10-01-2009, 10:09 AM
bobby_yan bobby_yan is offline
Junior Member
 
Join Date: Nov 2007
Posts: 14
bobby_yan is on a distinguished road
Default

Re: How to convert mov (MPEG4 + AAC) to avi without re-encoding?


I solved the problem by avidemux.
Reply With Quote
  #7  
Old 04-18-2016, 03:06 AM
grewetab grewetab is offline
Junior Member
 
Join Date: Apr 2016
Posts: 1
grewetab is on a distinguished road
Default

Re: How to convert mov (MPEG4 + AAC) to avi without re-encoding?


You might convert MOV to a more common format like AVI
As for the solution, I suggest try Faasoft MOV to AVI Converter or Format Factory (www.pcfreetime.com).
How to convert MOV to AVI (http://www.faasoft.com/articles/mov-to-avi.html)
They should get you through what you have, and basically converts anything to anything so you shouldn’t have any problem finding something that works.
Reply With Quote
  #8  
Old 11-19-2007, 11:04 AM
bobby_yan bobby_yan is offline
Junior Member
 
Join Date: Nov 2007
Posts: 14
bobby_yan is on a distinguished road
Default

Re: AviSynth: How to convert create .AVS file that can open .QT and .MOV QuickTime fi


I have tried this code
Code:
# with audio (in many cases possible with QuickTime 7)
QTInput("D:\20030901.mov", color=2, audio=true)
and the resulted file is too huge, about 70G. It seems that "direct stream copy" means no compression here.

The motivation of the conversion is to synchronize the audio and video, which are out of synch in the original MOV file, without any re-encodings. The video is longer (about 1:09:20) than the audio (1:06:48). At the beginning, I wanted to convert it to AVI file and adjust the fps with VirtualDub to make the video synchronized. Fortunately, Avidemux automatically does this when exporting. But the audio in the AVI file generated by Avidemux was choppy, so I switched to MP4 container.

As I described in the above posts, resulted MP4 file generated with both A/V stream copy is still slightly out of synch, but much better than the original file. Moreover, the synch of the MP4 file with video direct copy and MP3 audio compression is perfect. I have also tried to combine the video generated from Avidemux and the audio extracted (direct stream copy with QT Pro) from the original MOV file with QT Pro 7.3, and export to a MP4 file with "pass through" option. The resulted file has the same out-of-synch problem. It seems the causation is the AAC LC format, but it's not right. Because the synch of the MP4 file (generated by Avidemux) with video direct copy and AAC LC audio compression is perfect too.

Compared to the original MOV file, only the fps changes, from 24 to 24.941. The only explaination is AAC LC audio from a video with integral fps cannot be muxed into a video perfectly with non-integral fps. Is that right? Any solutions? Thanks.

Last edited by Admin : 11-19-2007 at 11:03 PM. Reason: corrected word spelling
Reply With Quote
  #9  
Old 11-19-2007, 10:49 PM
Stream Recorder
 
Posts: n/a
Default

Re: AviSynth: How to convert create .AVS file that can open .QT and .MOV QuickTime fi


Quote:
Originally Posted by bobby_yan View Post
I have tried this code and the resulted file is too huge, about 70G. It seems that "direct stream copy" means no compression here.
Sorry for the mistake. Of course if you use DirectShowSource or Open it with any plug-in, you get an uncompressed file. And obviously "The direct stream copy" will leave it uncompressed.

Also Yamb can convert MOV to MP4 losslessly.
Reply With Quote
  #10  
Old 11-23-2007, 02:25 AM
Kron Kron is offline
Junior Member
 
Join Date: Jul 2007
Posts: 18
Kron is on a distinguished road
Default

Re: How to convert mov (MPEG4 + AAC) to avi without re-encoding?


Yamb (lossless MOV to MP4).
http://yamb.unite-video.com/

You may find some help here:
http://forum.doom9.org/forumdisplay.php?f=74
Reply With Quote
Reply Post New Thread
Tags: , , , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 04:32 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons