Quantcast DVD2SVCD: No Color Conversion in TMPGEnc Produces Unsupported Files - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
09-08-2004, 01:17 PM
ragrost ragrost is offline
Free Member
 
Join Date: Sep 2003
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
For some reason, when I select "no color conversion" in TMPGEnc when using DVD2SVCD, an error pops up at video encoding that says "cannot open AVS file-not supported; yet when I select "convert to RGB" in TMPGEnc, the video encodes fine. How can I keep the original color settings?
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
09-08-2004, 01:44 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
*--->EDITED: Phil always had the solution posted,
read the remainders posts here for details.
..... sorry .....was a "blond" moment! <---*



no way out with d2s cos the line
ConvertToRGB24()
using tmpgenc
or
ConvertToYUY2()
using CCE
is used in the end of the script(the program auto put it there).
the encoders need that colors convertions to work!
Reply With Quote
  #3  
09-08-2004, 02:37 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by jorel
no way out with d2s cos the line
ConvertToRGB24()
using tmpgenc
or
ConvertToYUY2()
using CCE
is used in the end of the script(the program auto put it there).
the encoders need that colors convertions to work!
There is a way !
You must add this line in your script :
function ConvertToYUY2(clip c){ return isYV12(c) ? c : convertToYV12(c) }

This way you will block the "ConvertToYUY2" added by D2S.
Reply With Quote
  #4  
09-08-2004, 03:07 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
great, i don't knew that Phil, thanks (too) !

doubt: in what place in the script i use that function ?
works with both encoders?
Reply With Quote
  #5  
09-08-2004, 03:15 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by jorel
doubt: in what place in the script i use that function ?
works with both encoders?
Anywhere in the script. And I never saw d2s adding otehr think to ConvertToYUY2 so I'm suprise to see that sometimes it use ConvertToRGB24.

For sure, if in your case D2S add "ConvertToRGB24" the you have to add also a line :
function ConvertToRGB24(clip c){ return isYV12(c) ? c : convertToYV12(c) }
Reply With Quote
  #6  
09-08-2004, 04:21 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
double thanks Phil!

and yes, d2s add "ConvertToRGB24" if you choose tmpgenc 2.5xx to encode ! ...don't know if happen using 3.x versions!
Reply With Quote
  #7  
09-09-2004, 03:12 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by jorel
and yes, d2s add "ConvertToRGB24" if you choose tmpgenc 2.5xx to encode ! ...don't know if happen using 3.x versions!
Jorel, I think that you forget this sticky post I did a long time ago :
http://www.kvcd.net/forum/viewtopic.php?t=6090

D2S never add "ConvertoToRGB24" on my PC, you can trust me
(unless last release works differently than 1.2.1)
Reply With Quote
  #8  
09-09-2004, 03:41 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
no Phil, i don't forgot that cool post!

but the d2s 122 add "ConvertoToRGB24", see the script from output folder:

LoadPlugin("C:\ARQUIV~1\DVD2SV~1\AVISYN~1.5PL\MPEG 2DEC\MPEG2D~1.DLL")
MPEG2Source("D:\D2S-D\DVD2AV~1.D2V")
undot()
asharp(1, 2)
deen()
ConvertToRGB24()
Reply With Quote
  #9  
09-09-2004, 03:54 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by jorel
no Phil, i don't forgot that cool post!

but the d2s 122 add "ConvertoToRGB24", see the script from output folder:

LoadPlugin("C:\ARQUIV~1\DVD2SV~1\AVISYN~1.5PL\MPEG 2DEC\MPEG2D~1.DLL")
MPEG2Source("D:\D2S-D\DVD2AV~1.D2V")
undot()
asharp(1, 2)
deen()
ConvertToRGB24()
Even with the settings set to "No Color Conversion" ? That sounds like a bug !
For me no conversion means no conversion
Reply With Quote
  #10  
09-09-2004, 04:01 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Dialhot
Even with the settings set to "No Color Conversion" ? That sounds like a bug !
For me no conversion means no conversion
no,...i don't change that settings.
was a faster test little a chapter in d2s default only to remove doubts !
Reply With Quote
  #11  
09-09-2004, 04:15 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by jorel
no,...i don't change that settings.
was a faster test little a chapter in d2s default only to remove doubts !
Okay, that explains all. For sure by default D2S add this. That is why I posted my sticky messages ! This setting must be changed.
Reply With Quote
  #12  
09-09-2004, 09:15 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
yeah you right
and i need to edit my first post here cos you had the solution posted a long time ago and after long time without use tmpgenc in d2s i forgot that great hints...(but i don't forgot that post, only that details)!
Reply With Quote
  #13  
09-09-2004, 09:17 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
no problem
Reply With Quote
  #14  
09-13-2004, 07:31 AM
ragrost ragrost is offline
Free Member
 
Join Date: Sep 2003
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
After spending a few days trying these settings, I still cannot get a proper video encode! I am using the MA script by Phil, and tried to add the "convert to YUY2..." line in the script (although it is already there) and it failed. Then I tried the "ConvertToRGB24..." line and still no video encoding takes place-just a black screen. I have ReadAVS checked in TMPGEnc every time (I'm using the new build, so it stays checked), so I'm all out of ideas.
Reply With Quote
  #15  
09-13-2004, 07:40 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Post the EXACT script that you try to use here please.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
DVD2SVCD: file.avs cannot open or unsupported logan555 Video Encoding and Conversion 2 11-24-2003 08:59 AM
DVD2SVCD: Perm subs + DVD2SVCD + Avi/Divx conversion Paulus Video Encoding and Conversion 3 09-13-2003 05:41 AM
TMPGEnc produces errors on Audio VBR Conversion? Jellygoose Video Encoding and Conversion 29 02-11-2003 03:48 AM
DVD2SVCD: Color Distortions jrv331 Video Encoding and Conversion 3 11-14-2002 10:41 PM
TMPGEnc: TMPGEnc error, can not open or unsupported HuGGies Video Encoding and Conversion 6 06-16-2002 11:56 PM




 
All times are GMT -5. The time now is 12:45 AM  —  vBulletin © Jelsoft Enterprises Ltd