CD-Ripper 1.2

Discuss and announce Total Commander plugins, addons and other useful tools here, both their usage and their development.

Moderators: white, Hacker, petermad, Stefan2

Post Reply
User avatar
matis_
Junior Member
Junior Member
Posts: 28
Joined: 2003-05-29, 19:51 UTC
Location: Zabrze,Poland

Post by *matis_ »

hi
cd-ripper is a great plugin for TC , i enjoy using it
but
there's one thing i stumbled upon using it
in ogg setting/quality level :
0.0 (160kbps) <-- this looks like a bug , it should be 64kbps or similiar
0.1 (80kbps) the problem is , it not only looks wrong but produces
0.2 (96kbps) ogg in the wrong bitrate
0.3 (112kbps)
0.4 (128kbps)
0.5 (160kbps)
0.6 (192kbps)
0.7 (224kbps)
0.8 (256kbps)
0.9 (320kbps)
1.0 (498kbps)

i hope it can be fixed (if it's a bug)

cheers & keep up the good work
User avatar
SCHMaster
Member
Member
Posts: 199
Joined: 2003-02-08, 00:39 UTC
Location: Ukraine
Contact:

Post by *SCHMaster »

2matis_
Hmm ...
Here (IMHO) no mistakes. This is because quality level of the coding when use Vorb.dll is defined by importances within the range of from 0.1 before 1.0. As a matter of convenience I have indicated aproximate importance bitrate. For checking use any player, which can show information on OGG file. Or use THIS link.
User avatar
nicol
Junior Member
Junior Member
Posts: 48
Joined: 2003-02-11, 13:33 UTC

Post by *nicol »

you should want rip WAV files from hard disk files to MP3 hard disk files so
and vice versa , not always from CD !

christian
User avatar
djk
Power Member
Power Member
Posts: 1651
Joined: 2003-03-17, 11:33 UTC
Location: Poland
Contact:

Post by *djk »

nicol wrote:you should want rip WAV files from hard disk files to MP3 hard disk files so
and vice versa , not always from CD !

christian
As I understand you...you can do it now;-)
Just copy the files from your disk to \\\CD-Ripper\Convert directory.
In the result you will get the files in format you want (you have in your settings).
Is that what you want?
DJK
Totally addicted to Total Commander
totalcmd.pl
en.totalcmd.pl
User avatar
fabiochelly
Power Member
Power Member
Posts: 603
Joined: 2003-02-05, 12:03 UTC
Location: Rambouillet, France

Post by *fabiochelly »

Hi,

Your plugin is great.
How did you do to include a CPU window in the default TC progress bar?
Fabio Chelly.
#60241
Lorsqu'on s'occupe d'informatique il faut faire comme les canards...
Paraître calme en surface et pédaler comme un forcené par en dessous
User avatar
fabiochelly
Power Member
Power Member
Posts: 603
Joined: 2003-02-05, 12:03 UTC
Location: Rambouillet, France

Post by *fabiochelly »

A little problem: when converting more than one file (with 2 progress bars so), the CPU window and the background button are too close of the 2nd progress bar.

In background mode, isn't it possible to have both progress bars in soft mode (not segmented)?
Fabio Chelly.
#60241
Lorsqu'on s'occupe d'informatique il faut faire comme les canards...
Paraître calme en surface et pédaler comme un forcené par en dessous
User avatar
nicol
Junior Member
Junior Member
Posts: 48
Joined: 2003-02-11, 13:33 UTC

Post by *nicol »

Thanks for the information , i will try as soon as possible !

christian
eis
New Member
New Member
Posts: 1
Joined: 2003-05-30, 07:44 UTC

Post by *eis »

Definitly a newbie question, but still ...

I want to place the plugin DLLs in some other directory than the Windows directory.

I have seen references in this forum to RIP.INI, CDRIPPER.INI and FSPLUGIN.INI.
- What is the correct name and where shall I put it?
- What shall be in it (preferable an example)?
[ Maybe something to put in next Readme... ]
If TC did not exist, I would be still be running DOS.
User avatar
SCHMaster
Member
Member
Posts: 199
Joined: 2003-02-08, 00:39 UTC
Location: Ukraine
Contact:

Post by *SCHMaster »

2eis
I want to place the plugin DLLs in some other directory than the Windows directory
Copy DLLs in any directory, choice "Settings>Ripper settings" and change path and (or) used INI file.

2fabio

Parent:=FindWindow('TDLG2FILEACTIONMIN',nil);
EnumChildWindows(Parent, @FindChE, 0 );
if CPU = nil then PrepareCPUIndicator; // Create CPU-Window
CPU.ParentWindow := Parent;
CPU.Top:=YBtPos;
CPU.Left:=25;
CPU.Width:=102;
CPU.Height:=17;
CPU.PrepareIndicator;

Function FindChE( wnd: HWND; lParam: LPARAM ): Bool; StdCall;
Var
pCH : Array [0..20] Of Char;
Rect:TRect;
Begin
Result := True;
GetClassName( wnd, @pCH, 20 );
if pCH = 'TButton' Then
begin
GetWindowRect(Wnd, Rect);
YBtPos:=Rect.Top;
GetWindowRect(GetParent(wnd), Rect);

YBtPos:=YBtPos-Rect.TopLeft.Y-28;

end;
End;
IMHO - in your HTTP Browser need this (CPU Load) window.
User avatar
fabiochelly
Power Member
Power Member
Posts: 603
Joined: 2003-02-05, 12:03 UTC
Location: Rambouillet, France

Post by *fabiochelly »

Thank you very much.
Fabio Chelly.
#60241
Lorsqu'on s'occupe d'informatique il faut faire comme les canards...
Paraître calme en surface et pédaler comme un forcené par en dessous
User avatar
matis_
Junior Member
Junior Member
Posts: 28
Joined: 2003-05-29, 19:51 UTC
Location: Zabrze,Poland

Post by *matis_ »

[face=arial]thx for explaining , SCHMaster

another thing , i saw in ogg vorbis encoder plugin for winamp that there are to methods of setting/encoding/whatever bitrate
one is called vbr - there's a slider entitled 'quality' which sets the bitrate
so i guess it's the same method as in your (great btw) plugin
but there's also abr thingy , which is cool because you can manually enter desired bitrate (that way i can create bitrates <80 or >498)
my question is - do you consider / plan to include ABR in your plugin ?

& plz forgive me if it's a n00b-type thought from me :P



cheers








[/face]
User avatar
SCHMaster
Member
Member
Posts: 199
Joined: 2003-02-08, 00:39 UTC
Location: Ukraine
Contact:

Post by *SCHMaster »

2matis_
include ABR in your plugin
Possible.
plz forgive me if it's a n00b-type thought from me
:wink:
User avatar
SCHMaster
Member
Member
Posts: 199
Joined: 2003-02-08, 00:39 UTC
Location: Ukraine
Contact:

Post by *SCHMaster »

Hi ALL !!!
Last update CD-Ripper 1.6.1
All filesand Plugin only
Some bug fixes (including under convert with CD-Rom drive)
User avatar
djk
Power Member
Power Member
Posts: 1651
Joined: 2003-03-17, 11:33 UTC
Location: Poland
Contact:

Post by *djk »

BTW SCHMaster
Tell me when the modules (Bass.dll, etc) should be "loaded" and when not? They seem to behave sometimes very strange, once they are, ahother time, they aren't....
DJK
Totally addicted to Total Commander
totalcmd.pl
en.totalcmd.pl
User avatar
SCHMaster
Member
Member
Posts: 199
Joined: 2003-02-08, 00:39 UTC
Location: Ukraine
Contact:

Post by *SCHMaster »

2djk

1. Restart TC
2. Move over to CD-Ripper
3. Cause form of the adjustment and see on condition (loaded/unloaded) of the modules
4. Convert some files in some formats (wav-mp3, mp3-ogg, wma-ogg...)
5. Once again cause the form of the adjustment and see on condition (loaded/unloaded) of the modules...

Here appears, is used module at current moment or no
Post Reply