digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   KVCD: would others post their procedures? (http://www.digitalfaq.com/archives/encode/2016-kvcd-post-procedures.html)

SansGrip 01-02-2003 02:22 PM

KVCD: would others post their procedures?
 
I have some thoughts going through my head, and am trying to pin down the procedure most people use for encoding (the manual way, rather than acp or DVD2SVCD). Personally, I do it like this:

1. Obtain source files, either VOBs or AVIs
2. Separate AC3/PCM audio
3. Adjust audio length, if necessary
4. Encode audio with HeadAC3he
5. Load source file in VirtualDub and get border sizes
6. Enter information into FitCD to obtain cropping/resizing parameters
7. Create an appropriate Avisynth script including Sampler()
8. Make sample strips to determine correct CQ or CQ_VBR
9. Comment Sampler() line
10. Encode
11. Mux audio and video in bbMPEG
12. Author with VCDEasy
13. Burn with CDRWIN

If others could post their procedures I'd be grateful, as I'm trying to find points of similarity for a potential project :).

kwag 01-02-2003 02:30 PM

Re: Procedure
 
Quote:

Originally Posted by SansGrip

as I'm trying to find points of similarity for a potential project :).

:bigooh: On boy, that sounds like 2003 is going to be interesting :jawdrop: :wink:

Your procedure is almost identical to the one I use, except I haven't used Vdub to get border sizes. Is there that much difference to doing it with Vdub than to let FitCD calculate them :?:
I also let VCDEasy do the burn.


-kwag

urban tec 01-02-2003 02:34 PM

I'm the same as Kwag almost identical to my method apart from the vdub part.

SansGrip 01-02-2003 02:47 PM

Re: Procedure
 
Quote:

Originally Posted by kwag
I haven't used Vdub to get border sizes. Is there that much difference to doing it with Vdub than to let FitCD calculate them :?:

FitCD won't calculate the size of the borders on the existing source material. That's the part for which I use VDub.

Quote:

I also let VCDEasy do the burn.
I had a problem getting cdrdao to work with my burner, but I've not tried it with the latest version of VCDEasy yet.

kwag 01-02-2003 04:08 PM

Re: Procedure
 
Quote:

Originally Posted by SansGrip
FitCD won't calculate the size of the borders on the existing source material. That's the part for which I use VDub.

:imstupid: I didn't get that :eeks:, maybe too much alcohol from New Year's eve on my system :roll:

black prince 01-02-2003 04:55 PM

@SansGrip,

4. Encode audio with HeadAC3he

In this step, I wait until after creating video file (.m1v) and then
create the audio with HeadAC3he. Sometimes audio will need
adjusting if video comes out too large or too small :)

5. Load source file in VirtualDub and get border sizes

Cropping with VirtualDub or Tmpgenc is easier than with FitCD,
because you can visually see what your doing. SansGrip and
Mauddib are working on a way to call VirtualDub via FitCD and
everything could be done within FitCD. :D

7. Create an appropriate Avisynth script including Sampler()

Here's the part where your decisions will either create a great video
movie or a failure. How you decide which resolution to use, which
filters have the best results for your video type, what will fit on 1 or 2
CD's for the movie lenght, widescreen vs fullscreen encodes, and
more. I feel the most common video type and settings should be
discussed as samples (e.g. KVCDx3 CQ or CQ_VBR).

-black prince

black prince 01-02-2003 05:01 PM

@SansGrip,

I forgot, plenty of screenshots, e.g. bbMPEG, FitCD, avi sample scripts,
etc. 8)

-black prince

SansGrip 01-02-2003 05:16 PM

I have an idea for guessing a good starting value for automated sample encoding... Theoretically if one knew the frame count, resolution and how much of the frame was actual information (as opposed to borders) it should be possible to arrive at a pretty good estimate of the quality value to use. I've tried this out manually and had promising results, but it's too long-winded to do every time unless it's automated.

In order to do this in a program one would need to enter the cropping and resize values too, so I figure if I'm going to implement that in a program I might as well make it do the resize part of FitCD's job as well.

Essentially I'm thinking of putting together an "all-in-one" tool for KVCD encoding. At first it would incorporate the functionality of both FitCD and KVCDP, but it could in theory be expanded to include automatic audio extraction from AVIs (properly handling both PCM and AC3), hands-free encoding with HeadAC3he and TMPGEnc, and could even duplicate the important parts of VCDEasy via vcdimager and cdrdao.

I think before I start planning this in too much detail I should check out acp, because it sounds like the two might be doing the same job ;).

Anyway, that's why I was asking the question. Feedback appreciated.

kwag 01-02-2003 07:25 PM

Correct borders with Vdub
 
Hi SansGrip,

Please correct me if I'm wrong. If I understand it correctly, this is the way I would get my "correct" borders with Vdub.
I open my clean .avs with Vdub. That is, no resizing or addborders on the script. I add the "null transform" filter and crop the top and bottom. For example, I got 56 on top and 59 on bottom. So if my targer resolution is 528x480, it would subtract 480 - 57 -59 = 366. So my resizing would be "LanczosResize( 528, 366 )" and my borders would be "AddBorders( 0, 56, 0, 59 )"

Actually if I want one block overscan, then lanczos would read "LanczosResize( 512, 250 )" :?: :?: ( 528 -16 ) ( 266 -16 )

Is this the correct procedure, or did I miss something :roll:

Edit: On add borders would be: "AddBorders( 16, 56, 16, 59 )" because of the one block overscan. Forgot to add the 16's.

-kwag

SansGrip 01-02-2003 07:56 PM

Re: Correct borders with Vdub
 
Quote:

Originally Posted by kwag
If I understand it correctly, this is the way I would get my "correct" borders with Vdub.

That's almost the way I do it, with the difference that I note the border sizes and new dimensions I obtain through VDub, then enter those into FitCD. It'll then work out all the cropping and resizing for me.

I don't bother using AddBorders in Avisynth, I just set TMPGEnc to use "center" arrangement and it handles that for me :).

kwag 01-02-2003 08:00 PM

Re: Correct borders with Vdub
 
Quote:

Originally Posted by SansGrip
Quote:

Originally Posted by kwag
If I understand it correctly, this is the way I would get my "correct" borders with Vdub.

That's almost the way I do it, with the difference that I note the border sizes and new dimensions I obtain through VDub, then enter those into FitCD. It'll then work out all the cropping and resizing for me.

I don't bother using AddBorders in Avisynth, I just set TMPGEnc to use "center" arrangement and it handles that for me :).

But then what are you doing, cropping in AviSynth?
Also, for what I see in the way I just did it above, there's no need for FitCD 8O. My aspect is correct with the manual calculations :!:

-kwag

SansGrip 01-02-2003 08:09 PM

Re: Correct borders with Vdub
 
Quote:

Originally Posted by kwag
But then what are you doing, cropping in AviSynth?

Yep, using the values from FitCD.

Quote:

Also, for what I see in the way I just did it above, there's no need for FitCD 8O. My aspect is correct with the manual calculations :!:
I'm not sure, but I think that way will fail with anamorphic source. Also it won't be rounded correctly compared to the values FitCD suggests.

Basically you're using VDub to find out how big the borders are in the source material. You then transfer those values over to the "film pixel" textboxes in FitCD and proceed as normal, except now you're cropping those borders in Avisynth before doing anything else (except stuff like Telecide). This makes your script run faster because the filters have to process fewer pixels.

muaddib 01-02-2003 09:26 PM

Re: Procedure
 
Quote:

Originally Posted by SansGrip
If others could post their procedures I'd be grateful, as I'm trying to find points of similarity for a potential project :).

Your procedure is almost identical to the one I use, except I let VCDEasy do the burn, and extract the DVD chapters with ChapterXtractor.

deltaboy 01-02-2003 10:18 PM

Re: Correct borders with Vdub
 
Quote:

Originally Posted by kwag
So if my targer resolution is 528x480, it would subtract 480 - 57 -59 = 366. So my resizing would be "LanczosResize( 528, 366 )" and my borders would be "AddBorders( 0, 56, 0, 59 )"

so KWAG... was it you or the calculator that had too much eggnog??? heheh sorry man, had to be done. :wink:

anyway, after you AddBorders and get your correct output resolution, what are you selecting as your Source Aspect Ratio and how do you determine that?

here is my procedure:

01. Obtain source files, either VOBs or AVIs
02. Separate AC3/PCM audio
03. Adjust audio length, if necessary
05. Encode audio with HeadAC3he
06. Create an appropriate Avisynth script (with cropping and resizing) including Sampler()
07. Make sample strips to determine correct CQ
08. Encode
09. Mux audio and video in TMPGenc
10. Author and burn with VCDEasy

kwag 01-02-2003 10:52 PM

Re: Correct borders with Vdub
 
Quote:

Originally Posted by deltaboy
so KWAG... was it you or the calculator that had too much eggnog??? heheh sorry man, had to be done. :wink:

No, my stomach had too much beer :bugeyes:
Quote:


anyway, after you AddBorders and get your correct output resolution, what are you selecting as your Source Aspect Ratio and how do you determine that?
I'm doing similar to SansGrip, but I found it faster and "clearer" to see the edges with TMPEG's internal crop. It gives me the same information as Vdub. Then, as SansGrip said, I take parameters and enter them in "Film Pixels" of FitCD and set left border and righr border. Everything else then is done by FitCD. In TMPEG, I'm using "Center" and 1:1 VGA as source aspect, as it seems to make no difference if I set to 4:3 or 16:9. So 1:1 is actually "Whatever comes resized via AviSynth" :wink:
Aspect looks correct on TMPEG and played back on WinDVD too.

-kwag

deltaboy 01-02-2003 10:58 PM

ahhh, you are a beer man. me too, but my unhealthy diet of around 30/week makes it feel like new years every day! hahahaha...

try 16:9 with full screen (keep aspect) and let me know what your results are. i hope its the same. thanks for the help!!!

kwag 01-02-2003 11:25 PM

Quote:

Originally Posted by deltaboy
ahhh, you are a beer man. me too, but my unhealthy diet of around 30/week makes it feel like new years every day! hahahaha...

:Drunk:
Quote:


try 16:9 with full screen (keep aspect) and let me know what your results are. i hope its the same. thanks for the help!!!
I have to keep it "Center" because I removed the "addborders" from the script, and the .avs has the correct resize. If I set "Full Screen (keep aspect)" the output is wrong. :wink:

-kwag

GFR 01-03-2003 05:18 AM

For DVD rips

01. Rip VOBs with SmartRipper
02. Separate AC3 audio(s) and .d2v project (DVD2AVI) (Sometimes it works better to let SmartRipper extract the audio stream(s))
03. Get DVD chapters with Chapter Extractor or from SmartRipper log
04. Get subtitles (bmps + sub) with SubRipper
05. Adjust audio(s) length(s), if necessary
06. Encode audio(s) with HeadAC3he
07. Load .d2v in TMPGEnc and find the borders (film pixels)
08. Create an appropriate Avisynth script (with cropping and resizing) including Sampler()
09. Make sample strips to determine correct CQ
10. Encode
11. Mux audio(s) and video in TMPGenc (I have had better luck with it for SVCD muxing, my player doesn't like 480 lines mpeg-1)
12. Mux Subtitles as CVD with WinSubMux GUI
13. Author and burn with VCDEasy
14. Print covers and labels for the CD's :)

If I'm doing the movie in two CD's I treat each CD as a separate project so that I can make sure the movie is split at a chapter transition and each CD is fully filled.

For AVI captures

01. Capture with AVI_IO, HuffYUV or MainConcept MJPEG
02. Load .avi in TMPGEnc and set the borders (use TMPGENC to crop) and Ghostbuster parameters (if necessary)
03. Create an appropriate Avisynth script including Sampler(), MJPEGcorrect (if necessary), Decomb, Ghostbuster, etc.
04. Make sample strips to determine correct CQ
05. Load .avs in TMPGEnc and do Cut editing to eliminate comercials (makes little difference in prediction doing this at this point)
06. Encode video+audio (external audio coder set to toolame)
07. Author and burn with VCDEasy (may set chapters with the built-in player of the new version)
08. Print covers and labels for the CD's :)

apoc 01-03-2003 06:16 AM

Quote:

Originally Posted by GFR
05. Adjust audio(s) length(s), if necessary

Hi,

How do you do that ?? :eeks:
Is it really necessary ?

thx

--
apoc

GFR 01-03-2003 07:07 AM

It can be necessary, as a last resource, if you have synch problems. The most friendly way to do this with an audio editor like CoolEdit, sometimes a video editing tool like Ulead's helps.

black prince 01-03-2003 08:48 AM

@Kwag,

Here the instructions SansGrip gave me to Crop using FitCD.
I created a avs script with no filters as input to VDub->video->add->
null transform->OK->cropping. Then I following the steps below.
It gets tricky when top-bottom and/or left-right borders are different.
The advantage of doing it this way is faster encodes. Albeit FitCD
can give the crop settings, it would be nice to make this a more
user friendly process :)

Quote:

Ok, so you know the size of your borders. Since the source is 720x480, this means that what FitCD calls the "film pixel" (which really means "frame size without borders") should be set to

720 - (16 + 16) = 688

by

480 - (64 + 64) = 352

FitCD will automatically choose what it thinks is the correct "left border" and "top border" for those values, but it might be wrong if the borders aren't perfectly symetrical. If you notice it says, for example, left border is 8 and you know it's 10, then change the 8 to a 10 in the "left border" box. Ditto for the top border.

At this point FitCD knows the size of the frame without borders and how wide each border is. You can then choose your cropping method ("no cropping", "accurate" and "average" are the most common -- I almost always use "average" myself) and set the cropping "round to" sliders both to 4. While you're at it, set the resize "round to" sliders to 16. Also choose the correct destination size, set your TV overscan blocks, and uncheck "optimize for CCE", "Anamorphic" and "Format conversion".

The values shown for cropping and resizing will now be correct for this particular movie, so either copy the script output or insert the values into your own script.

Here's an example from the last movie I did. Source frame: 720x480. Frame without borders: 706x462. Left border: 8. Top border: 8. Average cropping.

I hit the "Source" button and load in the .d2v file. I then set the "film pixel" boxes to 706 and 462, and the "left border" and "top border" both to 8. I make sure the "round to" sliders are all correct, and select the cropping method I want to use -- in this case, "average".

FitCD tells me that I need to crop to 696x460, then resize to 528x352. I put the following lines in my script:

Code:

Crop(8, 8, 696, 460)
BilinearResize(528, 352)



I then copy the AddBorders line verbatim from FitCD's script output:

Code:

AddBorders(0, 64, 0, 64)



And that's it: one resized movie with no bits being wasted on not-quite-black borders and with an aspect ratio that matches the original almost exactly.

Hope that helps.
_________________
Regards,
SansGrip

-black prince

SansGrip 01-03-2003 09:47 AM

Quote:

Originally Posted by apoc
How do you do that ?? :eeks:
Is it really necessary ?

I generally only need to adjust the audio length if I'm converting a PAL movie into NTSC. To do this I use AssumeFPS(23.976), which means the video now runs about 4% longer and I need to "time stretch" the audio an equal amount for it to remain in sync.

Edit: Oops, forgot to say how I do it. I either use a utility called WLA (available from Doom9's download page, I think) or I use WaveLab. The latter is easier since I just enter the new running time instead of having to calculate the new total-samples value.

SansGrip 01-03-2003 09:50 AM

Quote:

Originally Posted by black prince
Here the instructions SansGrip gave me to Crop using FitCD.

A quick clarification to what I wrote: when I say "uncheck anamorphic", I mean "uncheck destination anamorphic", not source.

Also I've since stopped putting AddBorders in my Avisynth script. I now set TMPGEnc's arrange method to "center" and it adds whatever borders are necessary.

black prince 01-03-2003 10:17 AM

@All,

It turns out that LanczosResize(496,352,0,8,720,464) in this
format will crop and resize. LanczosResize(496,352) and
Crop(0,8,720,464) is the same thing. There is debate as to whether
a resize should include a crop command. Having a separate crop
command before resize will speedup the encode process.
Choosing LanczosResize in FitCD will give you the both :D

-black prince

black prince 01-03-2003 10:40 AM

@SansGrip,

I wanted to add some more ideas to enhance documentation.
I'd like dividing each step into separate How to Guides. This makes
it easier to update or add more information to each step.

For example:

1) Ripping DVD

2) Converting VOB to .d2v

3) Converting Audio

4) Cropping and Resizing

5) Predicting File Size

6) Encoding

7) Multiplexing

8 ) Authoring and Burning



-black prince

SansGrip 01-03-2003 10:43 AM

Quote:

Originally Posted by black prince
I'd like dividing each step into separate How to Guides. This makes it easier to update or add more information to each step.

That's a good idea. Of course, all of these guides can be written right now, except number 5 ;).

acidfire 01-03-2003 11:18 AM

Here's what I do:
1) Ripping DVD with smartripper

2) Converting VOB to .d2v with dvd2avi

3) Converting Audio with headache

4) Cropping and Resizing with fitcd

5) Encoding with tmpg and kwag's templates

6) Multiplexing with tmpg

7) Burning with nero

I didn't add Predicting File Size because I haven't tried it yet,but I plan on trying it soon. Most of the time my movies fits on a cd so I burn it, and if it's over I adjust so the movie will fit. But this is the way I do it.

black prince 01-03-2003 11:22 AM

@SansGrip,

Quote:

SansGrip Posted: Fri Jan 03, 2003 11:43 am Post subject:

--------------------------------------------------------------------------------

black prince wrote:
I'd like dividing each step into separate How to Guides. This makes it easier to update or add more information to each step.

Quote:

SansGrip wrote:
That's a good idea. Of course, all of these guides can be written right now, except number 5 .

The manual prediction method is available. It's need to include a section
for CQ prediction, where Kwag takes the current CQ and adds the new
CQ then divides by 2 for the corrected new CQ. CQ_VBR is what he
has available. 8)

-black prince

black prince 01-03-2003 11:57 AM

@SansGrip,

Here's the manual file prediction guide:

http://www.kvcd.net/forum/viewtopic.php?t=2102

-black prince

Daagar 01-03-2003 12:24 PM

Quote:

Originally Posted by SansGrip
Also I've since stopped putting AddBorders in my Avisynth script. I now set TMPGEnc's arrange method to "center" and it adds whatever borders are necessary.

What is the advantage of doing it this way? Does it help speed up the encode process? Between this and doing a Crop() separate from the LanczosResize() I might finally get my encodes down to a more sane amount of time :)

SansGrip 01-03-2003 12:31 PM

Quote:

Originally Posted by Daagar
What is the advantage of doing it this way? Does it help speed up the encode process?

The advantage of letting TMPGEnc add the borders, for me, is that if I change my mind about what resolution to encode at there's fewer things to change in the script ;).

I'm not sure how it affects encode time. Probably not a lot.

GFR 01-03-2003 01:32 PM

I think with exception of FitCD, file size prediction and kwag templates, we can refer to Doom9 guides, they're very detailed and reliable. No need to reinvent the wheel :)

black prince 01-03-2003 02:49 PM

@acidfire,

Quote:

Here's what I do:
1) Ripping DVD with smartripper

2) Converting VOB to .d2v with dvd2avi

3) Converting Audio with headache

4) Cropping and Resizing with fitcd

5) Encoding with tmpg and kwag's templates

6) Multiplexing with tmpg

7) Burning with nero

Some of us use DVD Decrypter instead of Smartripper. Some use
BeSweet instead of Headac3he. Some multiplex with bbMPEG instead
of Tmpgenc and some use VCDEasy instead of Nero. Maybe these
steps should be without specific software so more than one way
can be described in the explaination of How To step. :?

@GFR

Quote:

I think with exception of FitCD, file size prediction and kwag templates, we can refer to Doom9 guides, they're very detailed and reliable. No need to reinvent the wheel
Maybe we should recreate all the steps, since some of Doom9's
guides have not been updated and are not specific to KVCD settings.
I never thought anyone would write an automated program like
acp, because we were using DVD2SVCD. Now it makes sense
because we can make changes to this program when new developments
arise more quickly and the same would be true for our own guides. :)
Also, putting updated dates on a step, let's everyone know the latest
changes for that step. :)

For example:

4) Cropping and Resize

5) File Prediction (updated: 01/07/03) :?

Step 4) has no changes, but step 5) was changed on 01/07/03.


-black prince

acidfire 01-03-2003 03:05 PM

@ black prince,
Yes I understand what you are saying :lol: , but SansGrip wanted to know how everyone makes their kvcd. And in his first post he had his method and the software he used. So that is why I added the software I used. But I do agree with you when you say we should not limit it to certain software. I'm not sure if it would be hard or not but maybe we can have each step then inside each step can be different software and how to use each software :roll: . But first we should get the basic steps down and go from there.

black prince 01-03-2003 03:29 PM

@acidfire,

acidfire wrote:
Quote:

But first we should get the basic steps down and go from there.
Yep! your right. I was thinking ahead about designing a guide that new
visitors and experienced users could refer to for starting with KVCD.
I'm sure the steps within steps can describe other methods to accomplish
the same outcome. Guides change and with this forum where change is
rapid we need a source to keep up to date. My hope is that only stable
processes will be posted for update and only certain forum members will
be able to make updates. 8)

-black prince

Daagar 01-03-2003 03:35 PM

I follow the steps and software suggestions put forward by Kwag and SansGrip. I simply don't have the time to do the extensive amount of testing that they've done, so if they say something works I tend to believe it and use it. This was especially true of bbMPEG. I loathed trying to use that software first time I tried, because it never worked. I asked Kwag what was wrong and he whipped up a screenshot of his settings and I haven't had a problem since!

To the point: KVCD has become much more than just a TMPGEnc template, it is a whole process from the ripping through to the burning. While I agree several software solutions will do the job, for any guides that are created for this site I think as much detail as possible should be included _based on the software being used by the authors_. Hence, if Kwag/SansGrip use HeadAc3he over BeSweet, for example, then document the process for HeadAc3he! Trying to document the process for multiple apps is very time-consuming, and will lead to either no guides getting completed or 'rush-jobs' that forget a few critical steps causing a flood of new posts here in the forums. If others want to contribute process documents for alternate software, by all means, but overall there should be a "Complete Guide to KVCD" which documents a single path from start to finish.

(NOTE: I mention Kwag/SansGrip above without any intention of slighting anyone else that has contributed significantly to the KVCD process).

acidfire 01-03-2003 03:44 PM

@ black prince,
Quote:

@acidfire,

acidfire wrote:
Quote:
But first we should get the basic steps down and go from there.



Yep! your right. I was thinking ahead about designing a guide that new
visitors and experienced users could refer to for starting with KVCD.
I'm sure the steps within steps can describe other methods to accomplish
the same outcome. Guides change and with this forum where change is
rapid we need a source to keep up to date. My hope is that only stable
processes will be posted for update and only certain forum members will
be able to make updates.

-black prince
Sounds Great! :lol: I don't know much about making guides but maybe SansGrip, Kwag, and you can get someothers to help with making guides. And maybe assign certen sections to one perston. It might make it easier for all involved in making the guides.:wink: Example:One person workes on just audio or if you can get enough people say one person just dose heada3he in the audio section. And that person keeps their section updated. Hope this help or gives you some ideas! :lol:

SansGrip 01-03-2003 03:51 PM

Quote:

Originally Posted by Daagar
Hence, if Kwag/SansGrip use HeadAc3he over BeSweet, for example, then document the process for HeadAc3he!

This would be my preference not because kwag and myself use it, but because it's better :mrgreen:.

Quote:

Trying to document the process for multiple apps is very time-consuming, and will lead to either no guides getting completed or 'rush-jobs'
I agree. I think the first step is to get the "most common case" documented, whether that be HeadAC3he or BeSweet, acp or DVD2SVCD, a calculator or KVCD Predictor, etc.. This was one of the reasons I started the thread.

Quote:

If others want to contribute process documents for alternate software, by all means, but overall there should be a "Complete Guide to KVCD" which documents a single path from start to finish.
KVCD is by nature open source, and the best thing about open source is that anyone can contribute. I think it would be a very good idea if we set up some "teams" to document certain aspects of the process, then a few individuals could go through the results and edit and integrate into a whole. I suggest a few individuals because I find things tend to be more consistent that way.

Personally I much prefer coding and testing to writing documentation (as you can tell from my readmes ;)), and I think am more useful to the cause in that role, but would be more than willing to help out with the final integration.

SansGrip 01-03-2003 03:54 PM

An additional thought struck me while playing with the 3-disc version of Minority Report: a useful section of the documentation would deal specifically with AC3 audio from AVI sources:

1) Use VirtualDub to extract
2) Use BeSplit to repair the resulting file
3) Use BeSplit to join separate AC3 files if necessary

Then one could refer to the generic HeadAC3he guide for actually encoding the AC3.

black prince 01-03-2003 03:57 PM

@All,

Here's a link to Divx Guides, that has a structure we could discuss.

http://www.everwicked.com/modules.ph...des&file=index

The guide uses links within the guide for steps needed to create
the Divx video. I'm interested in the structure and how easy it
would be to follow along. You may have a better one or want
to comment on this one :D

-black prince


All times are GMT -5. The time now is 07:52 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.