Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
|
|
#1 | Link | |||||
|
Registered User
Join Date: Feb 2008
Posts: 659
|
DivX 264 Profile
Hi people
I'm having a bit of trouble encoding a video, my cfg : Quote:
Quote:
My imput file is uncompressed, media info says : Quote:
Quote:
My avysinth ( 2.5.8 ) Quote:
|
|||||
|
|
|
|
|
#5 | Link | |
|
Registered User
Join Date: Feb 2008
Posts: 659
|
Quote:
Good ( WELL BAD ), i was just packing my cli, thnx for sharing, i will let avisynth do the conversion. |
|
|
|
|
|
|
#6 | Link |
|
Registered User
Join Date: Nov 2002
Location: San Diego, CA
Posts: 914
|
There is a table of accepted rates part-way down this page.
Try forcing the rate unambiguously: Code:
AVIsource("movie.avi", fps = 30, audio = false).AssumeFPS(30,1).ConvertToYV12()
__________________
DivX Plus Web Player 2.0 Beta DivX Tech Preview - MKV on Windows 7 Developer portal |
|
|
|
|
|
#7 | Link | |
|
Registered User
Join Date: Feb 2008
Posts: 659
|
Quote:
|
|
|
|
|
|
|
#8 | Link |
|
Registered User
Join Date: Nov 2002
Location: San Diego, CA
Posts: 914
|
The command line encoder accepts AVI, but currently it does not use the ICDecompress* calls to unpack frames through VFW decompressors, so only common RAW formats are accepted directly (e.g. 4CC's are one of YV12, IYUV, YUY2, YVYU, UYVY, BGR24, BGR32). If you have one of these formats you can pass the AVI file directly to the encoder but dwRate and dwScale (which define the frame rate in the AVI header) must also have acceptable values.
It's certainly very easy to pass AVI files through AVISynth via AVISource(), which will do any decompression, and then force the correct dwRate/dwScale using AssumeFPS(). Dark Shikari is correct in that the encoder will work with YV12 color internally, so you can either perform any necessary conversion using AVISynth or allow the CLI encoder to handle that for you.
__________________
DivX Plus Web Player 2.0 Beta DivX Tech Preview - MKV on Windows 7 Developer portal |
|
|
|
|
|
#10 | Link | |
|
Registered User
Join Date: Feb 2008
Posts: 659
|
Quote:
echo AVIsource("%mypath%\%mymovie%.avi") >> "%mypath%\temp2\%mymovie%.avs" echo Crop(0,0,-0,-0) >> "%mypath%\temp2\%mymovie%.avs" echo ConvertToYV12() >> "%mypath%\temp2\%mymovie%.avs" THNX |
|
|
|
|
|
|
#11 | Link |
|
Registered User
Join Date: Nov 2002
Location: San Diego, CA
Posts: 914
|
The current version does not, but the next update will.
@juGGaKNot: I didn't understand your last reply, are you saying "It works now!" or "My framerate looks okay and it still isn't working"?
__________________
DivX Plus Web Player 2.0 Beta DivX Tech Preview - MKV on Windows 7 Developer portal |
|
|
|
|
|
#12 | Link | |
|
Registered User
Join Date: Feb 2008
Posts: 659
|
Quote:
What will the next version add/release date ?
Last edited by juGGaKNot; 1st May 2009 at 23:08. |
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|