Quantcast KDVD: Directshowsource and CCE - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
11-13-2003, 09:00 PM
J-Wo J-Wo is offline
Free Member
 
Join Date: Nov 2002
Location: Toronto, Canada
Posts: 454
Thanks: 0
Thanked 0 Times in 0 Posts
Hey all. I just upgraded to avisynth 2.53 and was eager to try out the improvements in directshowsource(). Primarily, I was interested in using it to open MPEG-1 files. I found that this line worked perfectly with Tmpgenc, but with CCE it just hangs. My script was a simple one which included DirectShowSource("source_file_path") only, and if I try to load my avs script in CCE, the program just quits after a bit of thinking. Same thing happens when I load AVI files with directshowsource and load my script in CCE. Can anyone else confirm this problem? Does anyone know a workaround? Thanks.
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  
11-14-2003, 06:59 AM
vmesquita vmesquita is offline
Invalid Email / Banned / Spammer
 
Join Date: May 2003
Posts: 3,726
Thanks: 0
Thanked 0 Times in 0 Posts
Hello J-Wo,

Some time ago I tried DirectShowSource with CCE, and it also didn't work...
Reply With Quote
  #3  
11-14-2003, 07:58 AM
clickit clickit is offline
Free Member
 
Join Date: May 2003
Location: Athens, Hellas
Posts: 66
Thanks: 0
Thanked 0 Times in 0 Posts
what version of CCE are you working with ???
__________________
it's one thing that i know for sure, that i know nothing for sure
Reply With Quote
  #4  
11-14-2003, 08:01 AM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
Well Vmesquita is the CCE crack in here ....

... But as I remember ..... could just adding a "ConverttoYUY2()" at the end of the script solve the problem Just a thought.
Reply With Quote
  #5  
11-14-2003, 10:02 AM
J-Wo J-Wo is offline
Free Member
 
Join Date: Nov 2002
Location: Toronto, Canada
Posts: 454
Thanks: 0
Thanked 0 Times in 0 Posts
I'm using CCE 2.67.00.11. And no, adding ConvertToYUY2() did not work.
Reply With Quote
  #6  
11-14-2003, 10:37 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
use
converttorgb24()
or
converttorgb32()

in the end of script!
Reply With Quote
  #7  
11-14-2003, 10:42 AM
J-Wo J-Wo is offline
Free Member
 
Join Date: Nov 2002
Location: Toronto, Canada
Posts: 454
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by jorel
use
converttorgb24()
or
converttorgb32()

in the end of script!
Thanks for the suggestion jorel but neither worked. I suspect it has something to do with DirectShowSource also sending audio information to CCE, which for whatever reason CCE can't seem to handle. The same thing happens when I use AviSource without the "false" argument at the end to remove the audio info. Any thoughts/suggestions?
Reply With Quote
  #8  
11-14-2003, 02:36 PM
Jellygoose Jellygoose is offline
Free Member
 
Join Date: Jun 2002
Location: Germany
Posts: 1,288
Thanks: 0
Thanked 0 Times in 0 Posts
Try to use DirectShowSource("***.mpg", false)
__________________
j3llyG0053
Reply With Quote
  #9  
11-14-2003, 02:58 PM
J-Wo J-Wo is offline
Free Member
 
Join Date: Nov 2002
Location: Toronto, Canada
Posts: 454
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Jellygoose
Try to use DirectShowSource("***.mpg", false)
Thanks for the suggestion, but I already tried that. The 'false' argument is not a valid one for the DirectShowSource command.
Reply With Quote
  #10  
11-14-2003, 05:27 PM
clickit clickit is offline
Free Member
 
Join Date: May 2003
Location: Athens, Hellas
Posts: 66
Thanks: 0
Thanked 0 Times in 0 Posts
can you play this .avs file with media player ???

i say so because if there is a script error in your avs
CCE just quits !!!
__________________
it's one thing that i know for sure, that i know nothing for sure
Reply With Quote
  #11  
11-14-2003, 05:37 PM
J-Wo J-Wo is offline
Free Member
 
Join Date: Nov 2002
Location: Toronto, Canada
Posts: 454
Thanks: 0
Thanked 0 Times in 0 Posts
oh yes, the avs file plays fine in virtualdub, media player, zoomplayer, as well as tmpgenc. It is only CCE which doesn't accept it. All my script contains is:
Code:
directshowsource("source_path\movie.mpg")
I'm trying to load VCD files into CCE, but the same problem happens with avi sources and the directshowsource command. I have no problems using MpegSource (from mpegdecoder.dll) to load .mpg files into CCE, but for some reason I can't combine this with the trim() function. So I'd really like to figure out how to get it to work with CCE
Reply With Quote
  #12  
11-14-2003, 05:50 PM
clickit clickit is offline
Free Member
 
Join Date: May 2003
Location: Athens, Hellas
Posts: 66
Thanks: 0
Thanked 0 Times in 0 Posts
this last one and i give up

try the fps parameter
DirectShowSource(string filename, int fps, bool "seek")
__________________
it's one thing that i know for sure, that i know nothing for sure
Reply With Quote
  #13  
11-14-2003, 10:30 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
J-Wo,
i'm reading the cce pdf manual and after this,
i found the homepage with "overview"...
http://www.cinemacraft.com/eng/ccesp.html
Input file format:
AVI (1.0/2.0)
QuickTime
DV
Still image sequence (BMP/JPEG/TGA/TIFF)

cce can't open mpgs

Reply With Quote
  #14  
11-15-2003, 03:20 AM
glent2k3 glent2k3 is offline
Free Member
 
Join Date: Oct 2003
Location: always here
Posts: 71
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to glent2k3
may not be any use but you can open mpeg1 (vcd) with cce just use vdub to open the mpeg then set your resize filter and any other u want to use, then start frameserving rember to add the .vdr extension to the filename (very important)next u can either create script with the source as

AVISource("Your Frameserver File.vdr")
or use the vfpai conveter to create a dummy avi for the vdr simple eh?
__________________
put your liteon dvdr in the bin and buy an NEC 2500A
Reply With Quote
  #15  
11-15-2003, 11:19 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
right glent2k3,
after read a little more in the cce manual i found:
input formats...avi files...
" frameserver (avisynth,virtualdub) "

J-Wo, pm to me your mail and i send the cce pdf manual for you!
Reply With Quote
  #16  
11-20-2003, 05:46 PM
glent2k3 glent2k3 is offline
Free Member
 
Join Date: Oct 2003
Location: always here
Posts: 71
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to glent2k3
k ive got t the
DirectShowSource(" ") script working with cce 2.66.0107
and avisnth version 2.52 version 2.08 would hanf i am now testing 2.53 or latest i also could nto get gripfit ot other filters to load wiht this script even in movie stacker etc
for surce ia m using a 20 min ntsc mpeg1 vcd at 352x240 speeds of encoding are so dam fast even with the kdvd template , if a can get a resize filter to work ill be happy
__________________
put your liteon dvdr in the bin and buy an NEC 2500A
Reply With Quote
  #17  
11-20-2003, 06:34 PM
rendalunit rendalunit is offline
Free Member
 
Join Date: Apr 2002
Location: san jose, Ca
Posts: 1,148
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by J-Wo
I suspect it has something to do with DirectShowSource also sending audio information to CCE, which for whatever reason CCE can't seem to handle. The same thing happens when I use AviSource without the "false" argument at the end to remove the audio info. Any thoughts/suggestions?
I didn't see this mentioned yet- add KillAudio() to script to send vid stream only to CCE.

good luck
Reply With Quote
  #18  
11-21-2003, 04:38 AM
glent2k3 glent2k3 is offline
Free Member
 
Join Date: Oct 2003
Location: always here
Posts: 71
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to glent2k3
well i tried everyhting i can the most stabel way i can get cce to acpet mpeg 1 vcd files is using the following script i am not sure what the speed would be like to resize to higher ess like 704x576 etc .my sources are 352x240 ntsc mpegs when i add lines such as gripfit cce will not load my script maybe there is another filter to resize or a different version? anyway here it is


LoadPlugin("C:\Program Files\MovieStacker\Filters\MPEGDecoder.dll")

DirectShowSource("C:\yoursourcename.mpg")
KillAudio()
ive got a screenshot of cce encoding at 8x speed using the above which i think is damn fast can some host this pic for me? i find this useful for script to get my vcd onto dvd and get as mucha s possible using the kvcd templates thanks KWAG!

edit by the way i am a newbie so if i wrong plz correct me im just learning !
__________________
put your liteon dvdr in the bin and buy an NEC 2500A
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
KDVD: TMPGEnc template/Parameters for 352x240 Mpeg2 KDVD rab Video Encoding and Conversion 3 12-31-2006 02:12 PM
KDVD continua ficando azul (divx ---DIKO--> KDVD) el34 Conversão e Codificação de Vídeo (Português) 5 07-27-2004 07:36 AM
Avisynth: Directshowsource VS avisource? Little_Ghost Avisynth Scripting 7 06-20-2004 03:53 PM
Avisynth: Build 10-11-03 crashing with DirectShowSource (mpeg-1) rendalunit Avisynth Scripting 5 10-19-2003 10:37 AM
Avisynth: Do I use DirectShowSource to open MPEG-1 and MPEG-2? telemike Avisynth Scripting 0 02-07-2003 07:55 PM




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