Log in

View Full Version : Need help with CCE 0.70 trial - Edited


eriksen76
16th January 2005, 14:53
I just read this fix in the other thread, but I can't get it to work.
Under CCE options I have it set CCE SP Trial. I have tryed to change it to CCE SP. And I do as explained in the guide below. I get the error: "item.ecl is not a ecl for CCE"

Do I have to change something here:

[Options]
AudioDub=0
CCE=1
OneClick=0
[CCEOptions]
VBR_bias=10
Quality_prec=16
eclPasses=10
[Paths]
DECOMB=C:\Documents and Settings\Jacob Eriksen\Skrivebord\DvdRebuilder\Decomb521.dll
MPEG2DEC=C:\Programmer\AviSynth 2.5\plugins\DGDecode.dll
CCENEW=D:\CCE\cctspt.exe
Source=C:\DOCUMENTS AND SETTINGS\SKRIVEBORD\FINAL ANALYSIS\
Working=C:\DOCUMENTS AND SETTINGS\SKRIVEBORD\FINAL ANALYSIS\NY MAPPE\
Output=C:\DOCUMENTS AND SETTINGS\SKRIVEBORD\FINAL ANALYSIS\NY MAPPE\
[Audio]
Selected=1

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

First in setup, set "Path to CCE SP" to the CCE .exe file (cctspt.exe) not to EclCCE. Then in 3 button mode (NOT - One Click Mode) run the "Prepare" phase, when that is finished go into your DVD-RB working folder an open the REBUILDER.ECL file with notepad. FChange the the first line.
from:

; Cinema Craft Encoder SP -- Encoder Control List

to:

; CCE SP Trial Version -- Encoder Control List

Next run the "Encode" Phase and from there in pretty much the same.
---------------------------------------------------------------------

By the way I use RB 071

/Eriksen76

Boulder
16th January 2005, 15:14
No.

CoNS
16th January 2005, 15:17
ECLCCE is not needed for CCE SP 2.70.x Trial, as this version has command line support...

eriksen76
16th January 2005, 15:42
Problem solved:

For examples if it’s written “CCE SP Trial Version Ver. 2.70.01.05“
You should write:
; CCE SP Works Version -- Encoder Control List

If it’s written “Cinema Craft Encoder SP Ver. 2.70.01.05“
You should write:
; Cinema Craft Encoder SP -- Encoder Control List

at the top in REBUILDER.ECL

---> This examples are not real, but it’s show the way!

And it’s works ;-)

/Eriksen76

jdobbs
16th January 2005, 17:49
We need to end this discussion. Rule 6 applies. If you are inserting the word "WORKS" for "TRIAL" you are obviously using a cracked version of the CCE software. Discussions of cracked software is strictly prohibited on Doom9's Forum.

eriksen76
16th January 2005, 18:33
Originally posted by jdobbs
We need to end this discussion. Rule 6 applies. If you are inserting the word "WORKS" for "TRIAL" you are obviously using a cracked version of the CCE software. Discussions of cracked software is strictly prohibited on Doom9's Forum.

You're right Jdobbs, sorry!

/Eriksen76

Sputnix
12th March 2007, 02:56
Hi

I used an autoIt script to automate clicking on Ok on the error message and fixing the file. Download autoIt, compile the script below and place it into your StartUp folder. It will run in the background and handle the pop-up error message.

Note: Change the path locations before compiling the script!

Local Const $CCE_BAD_COMMENT = "; Cinema Craft Encoder SP -- Encoder Control List"
Local Const $CCE_GOOD_COMMENT = "; Cinema Craft Enc. SP -- Encoder Control List"
Local Const $CCE_TITLE = "Cinema Craft Enc. SP"
Local Const $CCE_ERROR = "K:\tmp\D2VAVS\item01.ecl is not a ECL for Cinema Craft Enc. SP."
Local Const $ECL_FILE = "K:\tmp\D2VAVS\item01.ecl"

While 1

If WinWaitActive($CCE_TITLE, "", 5) Then

Sleep (1)

If $CCE_ERROR = ControlGetText($CCE_TITLE, "", 65535) Then

; open the file and read its contents
$ecl_data = FileRead($ECL_FILE)

; replace the comment
If @error <> 1 Then
$ecl_new = StringReplace($ecl_data, $CCE_BAD_COMMENT, $CCE_GOOD_COMMENT, 1, 1)

If "" <> $ecl_new Then
If FileDelete($ECL_FILE) Then
If FileWrite($ECL_FILE, $ecl_new) Then
ControlClick($CCE_TITLE, "OK", 2, "left", 1)
Else
MsgBox(0, "Fix CCE", "Error writing new " & $ECL_FILE)
EndIf
Else
MsgBox(0, "Fix CCE", "Error deleting " & $ECL_FILE)
EndIf
Else
MsgBox(0, "Fix CCE", "Error parsing " & $ECL_FILE)
EndIf
Else
MsgBox(0, "Fix CCE", "Error reading " & $ECL_FILE)
EndIf

EndIf

Sleep (5)

EndIf

WEnd

Sputnix
:helpful: