Pegasys Products BBS

Jump to forum:

This forum is for users to exchange information and discuss with other users about a TMPGEnc product.
In case you need official support, please contact TMPG Inc.


Pegasys Products BBS [ Sorted by thread creation date ] << < Prev.   [ 471 / 982 ]   Next > >>
Classify Product Title User name Reply Last update
Question TE25 Progressive (Pulldown) Encoding Video Guy 1 2003-06-02 21:12:59
Question TE25 Karaoke VCD Lilianne 2 2003-06-03 12:22:33
Question TE25 how to resize 16:9 movie to fit 480x480 svcd? Kisoo Lim 3 2003-06-07 13:10:52
Bug report TE25 Crashing at end of conversion to AVI Chan Faunce 0 2003-06-02 10:35:38
Question TE25 TMPGEnc Encodes to VCD with Middle of Movie MISSING retroperv 3 2003-06-04 06:19:10
Question TE25 I can't encode a divx movie to mpeg 1 MATTJOHNSON_ANNATX 1 2003-06-02 05:29:47
Question TE25 Illegal MPEG video stream??? William 2 2003-06-02 02:07:35
Question TE25 Audio Problem Aligator 3 2003-06-02 04:00:49
Question TE25 Can not open, or unsupported error message Thunderthumbs 1 2003-06-01 21:53:26
Question TE25 Pause image ? Destiny 1 2003-06-01 21:51:30
Question TE25 split file dloffice 2 2003-06-02 03:43:06
Question TE25 Converting PAL to NTSC Jay 1 2003-06-01 05:36:20

Pegasys Products BBS [ Sorted by thread creation date ] << < Prev.   [ 471 / 982 ]   Next > >>
Question - TE25 - Progressive (Pulldown) Encoding No.37225
Video Guy  2003-06-02 18:35:17 ( ID:4yfrh0hqv72 )   [ Delete / Reply with quotation ]

I have a 23.976 (NTSC - 720x480) progressive cartoon avi file. I would like to MPEG-2 and later author it to DVD.

I would like the DVD to playback:
1 - Interlaced on a regular TV (To avoid the flicker)
2 - Progressive on a HDTV

From my research, I found this is what the movie studios do. A typical DVD movie will play back progressive on an HDTV and interlaced on a regulat TV.

What settings in TMPGEnc would I use to encode?

I was thinking I should set the Encode Mode to "3:2 pulldown when playback" with a Frame Rate set to "23.976 (internally 29.97)". Is this correct?

Many thanks for any help.


Minion  2003-06-02 21:12:59 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

Useing the "23.97fps(29.97 internally setting)" should add 3:2 Pulldown to the header of the file so that your DVD Player Plays it as Interlaced 29.97fps, But I wouldn"t know what HDTV would do as I know very little about it, You can also encode it as 23.97fps and use a Little Program called "Pulldown.exe" to add the 3:2 Pulldown, This is how a Lot of Poeple ass 3:2 pulldown instead of useing the "23.97fps(29.97 internally setting)".....



Question - TE25 - Karaoke VCD No.37222
Lilianne  2003-06-02 11:09:13 ( ID:ohcc2ey2og2 )   [ Delete / Reply with quotation ]

I want to convert a karaoke video, but I DO NOT want to omit the vocals part. The original video have the vocals, but once I convert it to MPEG, the vocals are gone. Any solutions?

Thanks.


Kika  2003-06-02 12:54:14 ( ID:gxmkoa4dlnj )   [ Delete / Reply with quotation ]

You have to Rip and Convert the Subtitles of the DVD.
Ripping can be done by SubRip. Subtitling the Video can be done by VirtualDub and VOBSub or Subtitler (Filters).
Guides can be found on vcdhelp.com or doom9.org.


Lilianne  2003-06-03 12:22:33 ( ID:ohcc2ey2og2 )   [ Delete / Reply with quotation ]

Thank you.

I was able to convert it once, though, using TMPGENC only and the vocals were intact. I then tried doing it again, and I can't. What could I be doing wrong (or right)?



Question - TE25 - how to resize 16:9 movie to fit 480x480 svcd? No.37218
Kisoo Lim  2003-06-02 11:06:31 ( ID:rgy7xoobqxr )   [ Delete / Reply with quotation ]

Normally I use avi2svcd to resize with bicubic resize option. Now I'd like to use just avisynth script and tmpgenc to encode.

Here is my question.

If I have 608x320 avi file and I want to keep same screen rate, I have to resize vertical resolution to 252(so 480:252) and pad up and down margin 114 each.(I did this way)

So this is my avisynth script resulted.

Import("C:PROGRA~1DVD2SVCDMovieRESAMP~1.AVS")
LoadPlugin("C:PROGRA~1DVD2SVCDAVISYN~1Mpeg2decmpeg2dec.dll")
AVISource("C:Download****.avi",False)
ConvertToYUY2()
BicubicResize(480,252,0.0,0.6)
AddBorders(0,114,0,114)

But....
When I look at the analog 29 inches TV screen, it looks like that it lost more vertical pixel or lines. So lt looks more flat than expected.

Am I using wrong mathematics?

Thanks.

Kisoo




Kika  2003-06-02 13:03:38 ( ID:gxmkoa4dlnj )   [ Delete / Reply with quotation ]

Try this:

BicubicResize(480,384,0,0.6,0,0,600,320)
AddBorders(0,48,0,48)

or this:

BicubicResize(480,352,0,0.6,0,0,596,320)
AddBorders(0,64,0,64)

Or this:

BicubicResize(480,336,0,0.6,0,0,608,320)
AddBorders(0,72,0,72)

One of these 3 Part-Scripts will do it right. Which one depants on the Source which has an incorrect Aspect Ratio.


Minion  2003-06-02 21:01:16 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

I personally use the "SimpleResize.dll" because it is a very Fast resizer and it is easy to use you just have to use " simpleresize(480,252) ...But you can allways do this in Tmpgenc by going to "Video arrande Method" and set it to "Center custom size" and to "480+252", This would be much faster than useing AVISynth to resize because it seems that your Source is a AVS file so you are sort of Double frameserveing...


ashy  2003-06-07 13:10:52 ( ID:4adzcnohuc. )   [ Delete / Reply with quotation ]

>If I have 608x320 avi file and I want to keep same screen rate, I have to resize vertical resolution to 252(so 480:252) and pad up and down margin 114 each.(I did this way)

This calculation is wrong.
The easiest way would be to load the original AVI into Gordian Knot and use it's resizer to adjust the size to compatible SVCD format then just load the .Avs file it creates into TMPG.

Also your source is not true 16:9 it's a few pixels short.
trues 16:9 would be 608x304 NTSC or 608x336 PAL.

Secondly the calcultion you are making for the vertical resolution is using 480 as the horizontal resolution. With SVCD the horizontal resolution will be stretched to 704 so you should use 704 when calculating your vertical resolution.
This would mean to create a correctly sized aspect ratio you would use a resolution of 480x352 for NTSC and 480x384 for PAL with the rest being padded up to 480(NTSC) or 576(PAL) by borders. Which means in your case you should resize to 480x352 and have 2 borders which are 64.

Like KIKA says your source has an incorrect aspect ratio but the settings he gave in the middle should be close enough however you could correct this by altering the vertical resolution to 320 and then adjusting the borders accordingly to give you the correct frame size.




Bug report - TE25 - Crashing at end of conversion to AVI No.37217
Chan Faunce  2003-06-02 10:35:38 ( ID:mouhmtyp1vl )   [ Delete / Reply with quotation ]

I have been using TMPGEnc for about 9 months now, and for the first 7 didn't have any problems. In the last 2 however, when I convert an MPG to AVI it will run fine until the very end (under 3 sec. to go, maybe when trying to close the file). This happens about 3/4 the time. I've tried to encode to Divx5, MS MPEG-4, Huffyuv, and Divx :) MPEG4-fast (or slow) motion, all with the same results.

I have a P4 2GHZ, 512Meg, using WinXP and TMPGenc 2.59 through 2.511
These crashes have caused a total lock-up of the system and on restart system is can be unstable. Once my HD lost all file structure and partion info.

I'm not sure where to look for the problem, any help would be provided.

If there is any more info you need just let me know

Thank you.



Question - TE25 - TMPGEnc Encodes to VCD with Middle of Movie MISSING No.37213
retroperv  2003-06-02 08:40:47 ( ID:zwskygmtpfr )   [ Delete / Reply with quotation ]


I asked this recently but didnt receive any replies, so I'm trying again. It's certainly one of the stranger TMPGEnc problems I've seen.

I've been using TMPGEnc for a long time, this is the first time I've seen something like this. I'm converting an average quality MPG to NTSC VCD MPG.

When the conversion was complete, both files showed the same length (20 minutes) and had the same beginning and end scenes. BUT, the VCD file was smaller than the average quality original, making me suspicious. It turns out a huge chunk of the middle of the video was MISSING from the VCD version.

I checked in settings to confirm that I hadnt set TMPGEnc to only encode a certain time frame. Everything is fine there, it's set to encode the entire video.

I'm lost, any suggestions will be appreciated.



Minion  2003-06-02 21:07:01 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

Well I don"t know what it can be, But through a Little bit of Deductive reasoning you can find out if the Problem lies in Tmpgenc or in your AVI file, If this is the Only file that behaves like this then it would seem that the Problem is just with this File, and if it is then there is Probably something wrong with it, which is Probably the case especially if it is a Downloaded file, as Downloaded files are easilly corrupted...You can try useing "Virtual Dub" to make a Copy of the file and see if that helps or use It to "Frameserve" the File to Tmpgenc which would be your Best bet to try...


retroperv  2003-06-03 07:44:31 ( ID:zwskygmtpfr )   [ Delete / Reply with quotation ]


I'll try that, thank you.


retroperv  2003-06-04 06:19:10 ( ID:zwskygmtpfr )   [ Delete / Reply with quotation ]


Minion, that worked, thank you again for the suggestion.



Question - TE25 - I can't encode a divx movie to mpeg 1 No.37211
MATTJOHNSON_ANNATX  2003-06-02 04:56:17 ( ID:ujqafsxyaag )   [ Delete / Reply with quotation ]

How do I make a divx movie into a mpeg for adobe premiere? I tried to do it on the tmpgenc and it says 100% complete but then i can't find it on my computer. It makes it .mcf file not mpeg. What do I do, I have no idea? please help


Minion  2003-06-02 05:29:47 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

What do you mean "For Adobe Premier"?? All you have to do Is Follow the steps in the Wizard and when you get the the last stage of the wizard remember were your file is going to be...OR, You can just load in your File then click the "Load" button and navigate to the VCD Template of your Choice and Double ckick it..Now just Press "Start" and it should encode, The "MCF" File is a Template file, you would only get one of these if you Saved a Template...



Question - TE25 - Illegal MPEG video stream??? No.37208
William  2003-06-01 20:00:24 ( ID:g5zhfj7waif )   [ Delete / Reply with quotation ]

When I use the Merge & Cut function to divide a large MPEG file into two, the first one comes out fine, but when I go the second part, an error message comes out "Illegal MPEG video stream". I try to change the Range for the second part but this message still pops out and stops the operation. Can the expert help me out? Thanks a lot!!!

William


Minion  2003-06-01 22:05:01 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

Well there are no Magic settings in the "Merge & Cut" that will make it work Properly when it doesn"t want to so the Only other option is to use a Totally Different Mpeg editor as the One in Tmpgenc can be Pretty Buggy at times, If you are Editing Mpeg2 files there are a couple of freeware Mpeg2 editors Like "Chopper XP" and "Mpeg2Cut" but for mpeg1/VCD"s I can"t think of a Freeware one right now But I do have one I can send you if you e-mail me..


William  2003-06-02 02:07:35 ( ID:g5zhfj7waif )   [ Delete / Reply with quotation ]

Thanks a lot. I have emailed you separately.



Question - TE25 - Audio Problem No.37204
Aligator  2003-06-01 19:24:23 ( ID:erf0.muwo/h )   [ Delete / Reply with quotation ]

Hi Minion, manage to get all the files you suggested and things worked pretty fine. But then think a file's audio is sort of out of hand.

When i used ac3 fix and after the encoding is done. It says the file has error of -2bytes. So is there any remedy for it. Cos simple multiplex it through tmpegenc had some message stating the file will not play well.


Minion  2003-06-01 21:56:40 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

Well All I can sugest is to use a Different Muxer to Mux the AC3 file to the Video, I have had good results with "BBMpeg" and it is Freeware...


Aligator  2003-06-02 03:36:51 ( ID:erf0.muwo/h )   [ Delete / Reply with quotation ]

One more problem is that, after going through ac3 fix, there is an error of -2 bytes. And after i encode it to mp2 using heachac3e, the mp2 file has no sound at all. Cos it is quite puzzling to me. So i wonder if the -2 bytes error that is costing the problem.


Aligator  2003-06-02 04:00:49 ( ID:erf0.muwo/h )   [ Delete / Reply with quotation ]

One more problem is that, after going through ac3 fix, there is an error of -2 bytes. And after i encode it to mp2 using heachac3e, the mp2 file has no sound at all. Cos it is quite puzzling to me. So i wonder if the -2 bytes error that is costing the problem.



Question - TE25 - Can not open, or unsupported error message No.37202
Thunderthumbs  2003-06-01 18:28:02 ( ID:pgxjjhknhl. )   [ Delete / Reply with quotation ]

After reinstalling my computer I cannot longer open any type of movie files in TMPGEnc v.2.510.49.157.

I have another computer running the exact version of TMPGEnc and here I can without any problems open the files that will not open on the other PC.

I have read people talking about plug-ins and have checked that the priority on the two machines are the same.

Does anybody have any idea why this is happening?


Regards,

Thunderthumbs


Minion  2003-06-01 21:53:26 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

Make sure you have all the Correct Codecs installed, If you install the "FFDShow Decoder" it will Decode allmost all Formats so it is better to install it than a Bunch of codecs...And Make sure the "Direct Show File reader" is set to "1" or "2" in the "Vfapi Plugins"....



Question - TE25 - Pause image ? No.37200
Destiny  2003-06-01 14:03:35 ( ID:p4qiv1d0xa6 )   [ Delete / Reply with quotation ]

Hi,

Thanks for reading this.

After I convert avi's using TMPGn and nero,I seem to be getting Still Imagaes roughly about every 20-30 seconds when i play on my dvd player the picture seems to Pause but the sounds seems to carry on fine. Then a sec later the picture and the sounds are normal and everything back together.

Does any1 know why this is happening. ? pleasse

thanks
Destiny


Minion  2003-06-01 21:51:30 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

Well Maybe tell us the Specs of the AVI file you are encodeing and the settings you are useing to encode the file, and are you just Burning with Nero?? No encodeing with Nero??



Question - TE25 - split file No.37197
dloffice  2003-06-01 04:10:14 ( ID:lkhkpbqhdmc )   [ Delete / Reply with quotation ]

Can someone tell me the process used to split the mpeg file so it can be recorded on to two CDs when the file is too large for a single CD. Thanks.


Minion  2003-06-01 05:39:42 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

It is simple ,Go to "File" to "Mpeg Tools" to "merge & Cut" and the Choose "Video-CD" from the DropDown menu, then Click "Edit" and then use the Slider and the Mark In and Mark Out buttons to Choose the Begining and end of each Part you want to save, and from here I"m sure you can Figure it out...


dloffice  2003-06-02 03:43:06 ( ID:lkhkpbqhdmc )   [ Delete / Reply with quotation ]

Thank you very much.



Question - TE25 - Converting PAL to NTSC No.37195
Jay  2003-06-01 03:29:10 ( ID:ntj2jrp2dvr )   [ Delete / Reply with quotation ]

I want to convert a PAL formatted file to NTSC with DVFilm's Atlantis however I only have mpeg2 files and I need avi. I've tried DVD2AVI v.1.77.3 to try and get to avi however the quality is horrible. I'm not sure if it's a codec problem, setting problem or if im trying to create the impossible. I'm using the MPEG-4 Fast motion compressor to create the avi but the file comes out like garbage. Any suggestions? TIA


Minion  2003-06-01 05:36:20 ( ID:w8yn5mktf8w )   [ Delete / Reply with quotation ]

The Best way would be to Frame serve the Mpeg file to the "NTSC/Pal converter", But I"m pretty Sure that the "Atlantis DV Film Converter" will only accept DV Files and will only output DV Files and encodeing your AVI to DV will Totally Ruin the Quality of your Movie..You would be best to either Use an encoder Like "ProCoder" Cuz it can do Proper NTSC/Pal conversion directly to AVI or to Exelent Quality Mpeg1/2..Or if you know how to use "AVISynth" it can do it while Frameserveing..Other High end editing Programs can do it also like Premier and Vegas Video 4..But if Atlantis does accept Regular AVI files you can Use DVD2AVI to make a D2V project file out of the Mpeg file, then use the "VFAPI Converter" to Convert the D2V into a Dummy AVI file that you can load into Atlantis to convert to NTSC then you can use something like AVI-Mux to Mux the audio to the NTSC AVI file....



Pegasys Products BBS [ Sorted by thread creation date ] << < Prev.   [ 471 / 982 ]   Next > >>

View article | Back to TMPGEnc Home | Administrator TMPGEnc Net

Script written by TMPGEnc.