Yes, you can copy and paste it.
Not sure what you mean here.Is this dos, java or what else ?
One issue at a time, but that's the SB2 skin, and the font size is set to large.Something strange happened to my softsqueeze emulation. It was an transporter, but now it is a strange player emulation. TROLL`s. Have tried to change it back in Softsqueeze preferances - skin - push - transporter - click ok - but the same strange payer appears, and take all my desktop space. TROLL.
Results 11 to 20 of 20
Thread: File names with eac
-
2007-08-17, 13:33 #11Senior Member
- Join Date
- Oct 2005
- Posts
- 7,099
Current: SB2, Transporter, Boom (PQP3 - late beta, PQP1 - early beta), SBC (early beta), Squeezebox Radio (PB1 - early beta), Squeezebox Touch (late beta)
Sold: SB3, Duet
-
2007-08-17, 14:52 #12
Yes, command line prompt was wrong. I copy and pasted two lines at once. Only the upper line was inserted. I saw this when i copied it back. I have to copy the upper line first and then the next line(under). The dos promt tells me that ther is two errors.
6 -V --replay-gain -T "artist=%a" -T "title=%t" -T "album=%g" -T "date=%y
"-T "tracknumber=%n" -T "genre=%m" -T "comment=EAC (Secure Mode)" %s
ERROR: Can`t open input file6: No such file or directory
ERROR: Can`t open input file tracknumber=01: No such file or directory
EAC extract to .wavLast edited by eiret; 2007-08-17 at 14:55.
-
2007-08-17, 14:55 #13Senior Member
- Join Date
- Oct 2005
- Posts
- 7,099
No, please post what is in the EAC "Additional command line options" here on this forum so we can see if there are any errors. Don't post it into a DOS box unless you want to test it out, but you have to put "flac" before it like this:
etc. etc.Code:flac -6 -V
Note I made a mistake on the code I posted. It should be "-6", not "6". But it goes to show you how easy it is to make a mistake. If you're off by one character, the entire thing won't work.Last edited by Mark Lanctot; 2007-08-17 at 15:00.
Current: SB2, Transporter, Boom (PQP3 - late beta, PQP1 - early beta), SBC (early beta), Squeezebox Radio (PB1 - early beta), Squeezebox Touch (late beta)
Sold: SB3, Duet
-
2007-08-17, 16:33 #14
Hello, with help from you i am near. Flac is compressing right now. But there are error message from command line prompt. Cant remember the first error exactly.
Was something like : error, cant find track 01.
The second one under here is accurate.
ERROR: can`t open track number=04: No such file or directory < on the cd rom there are track number 04. What does this mean ?
Tried with flac -6 as first digits, but i was to impatient. Deletet the files before flac was finished compressing. Did get error message(tracknumber) thoug.
No i am experimenting with -6 as the first digit.
If you look at these two lines :
-6 -V --replay-gain -T "artist=%a" -T "title=%t" -T "album=%g" -T "date=%y"
-T "tracknumber=%n" -T "genre=%m" -T "comment=EAC (Secure Mode)" %s
Should it be a "SPACE" between %y(last digit in the first line) and -T(the first digit in hte second line) ?
-
2007-08-17, 17:04 #15Senior Member
- Join Date
- Oct 2005
- Posts
- 7,099
Now I'm confused. Is it working or isn't it?
Let's try one thing at a time. I'm not sure why you immediately jumped to trying it out on the command line. It's a good idea, because if you can get it working there, you can get it working in EAC, but the codes will be different. Things like "tracknumber=%n" won't be accepted by flac as-is. They are internal to EAC. EAC will change "tracknumber=%n" to "tracknumber=1".
It may not like the leading "0".Cant remember the first error exactly.
Was something like : error, cant find track 01.
I'm confused again. Which "second line" is this? You should only be supplying EAC or flac with one line. As soon as it gets the carriage return ("enter") it'll execute, and if the line is incomplete, you'll get an error.The second one under here is accurate.
The command-line you're supplying it is mangled or it doesn't like the leading "0".ERROR: can`t open track number=04: No such file or directory < on the cd rom there are track number 04. What does this mean ?
It should be a space and not a carriage return/enter. It's a single line.No i am experimenting with -6 as the first digit.
If you look at these two lines :
-6 -V --replay-gain -T "artist=%a" -T "title=%t" -T "album=%g" -T "date=%y"
-T "tracknumber=%n" -T "genre=%m" -T "comment=EAC (Secure Mode)" %s
Should it be a "SPACE" between %y(last digit in the first line) and -T(the first digit in hte second line) ?Current: SB2, Transporter, Boom (PQP3 - late beta, PQP1 - early beta), SBC (early beta), Squeezebox Radio (PB1 - early beta), Squeezebox Touch (late beta)
Sold: SB3, Duet
-
2007-08-17, 17:24 #16
Yeeeaaah yeeeaah pip pip now flac is compressing without errors. Fck cool. An hard fight, but i had good peaple ringside(this forum).
Ther should be a space between %y and -T
HE HE HE .... phu !!
Any suggestion for an workaround about my problem with softsqueeze. Picture in a post above in this tread.
Thank you very much for your help and have a nice evening
-
2007-08-17, 17:38 #17Senior Member
- Join Date
- Oct 2005
- Posts
- 7,099
Glad to hear it! Looks like you sorted things out while I was typing this long message. Regarding SoftSqueeze, you should start another thread. Rather than me just deleting this message, I'll leave it in case it helps anyone else out.
Let's say you had a file called "song.wav". To compress it, you'd type:
You could use a number other than 6, anything from 0 to 8.Code:flac -6 "song.wav"
Now say you want to verify the file, which decodes it at the same time as it's encoding it, and if they don't match at the end, report an error.
Write ReplayGain track tags:Code:flac -6 -V "song.wav"
Add tags with a -T, then in double quotes, what the tag name is followed by what it will contain.Code:flac -6 -V --replay-gain "song.wav"
And finally if you want to specifically name the resulting flac file:Code:flac -6 -V --replay-gain -T "artist=Some Guy" "song.wav"
Looking familiar? This is all from http://flac.sourceforge.net/document...ools_flac.html There are a LOT more options.Code:flac -6 -V --replay-gain -T "artist=Some Guy" "song.wav" "Some Guy's Song.flac"
Now EAC uses codes so that it can pass things on to flac. It doesn't need the word "flac", it'll call it from the "location of flac.exe" that you've specified. To specify artist, you use %a. Title, %t. Album, %g. Etc., etc. Finally you use %s to specify the file name and path.Current: SB2, Transporter, Boom (PQP3 - late beta, PQP1 - early beta), SBC (early beta), Squeezebox Radio (PB1 - early beta), Squeezebox Touch (late beta)
Sold: SB3, Duet
-
2007-08-17, 19:17 #18
I am saving this message(above) from you and will try to learn a little bit,later.
Thank you for all the help.Last edited by eiret; 2007-08-17 at 19:20.
-
2007-09-19, 05:26 #19Senior Member
- Join Date
- Jul 2007
- Posts
- 232
Hello,
I have turned away from eac since it is using so much cpu resources... I can't even move the mouse to fast. It is running stable but should it make a 2.2ghz turion 64 with 1gb of ram completely inusable?
I used to use abcde under linux text console and do other things at the same time.
Any idea?
Thanks
Jeronimo
-
2007-09-30, 07:08 #20Senior Member
- Join Date
- Oct 2005
- Posts
- 7,099
No, that's not normal at all. EAC is very light on resources actually. It's the encoding that consumes as much resources as it can get.
I did find EAC had issues with window management, i.e. when you tried to go back to it from another window it would be sluggish in refreshing. It also liked to grab focus from other programs.Current: SB2, Transporter, Boom (PQP3 - late beta, PQP1 - early beta), SBC (early beta), Squeezebox Radio (PB1 - early beta), Squeezebox Touch (late beta)
Sold: SB3, Duet


Reply With Quote
