foo_cue_ex, How do you create a cue from playlist? |
![]() ![]() |
foo_cue_ex, How do you create a cue from playlist? |
Apr 7 2005, 21:18
Post
#26
|
|
![]() Group: Members (Donating) Posts: 175 Joined: 6-May 02 From: The Netherlands Member No.: 1985 |
Well, I finally got around to do some testing. I downloaded the latest version (0.4) and did some albums with it.
So far it works flawlessly, great job! FYI, I'm running xp sp2. -------------------- http://digitalx.org
|
|
|
|
Apr 7 2005, 22:08
Post
#27
|
|
![]() Group: Super Moderator Posts: 4887 Joined: 12-August 04 From: Exeter, UK Member No.: 16217 |
QUOTE (B @ Apr 7 2005, 09:18 PM) Well, I finally got around to do some testing. I downloaded the latest version (0.4) and did some albums with it. So far it works flawlessly, great job! FYI, I'm running xp sp2. Good news. Thanks for the feedback. Yeah, I uploaded 0.4 yesterday I think - just a couple of minor internal changes to 0.3, but I don't think I'll be doing anything to it for the foreseeable so I thought I may as well uploaded (but didn't bother announcing it). One new feature is the ability to pass a mask on the command line, so you may use: CODE CUEMAKE.EXE "E:\CDBackup\Green Day\American Idiot" "%artist%\%album%\%tracknumber% - %title%.wav" Last time I used CueMake (yesterday) I found it easiest to just run it like that. I may well turn it into a .NET console app for the next release - just so you get a bit of feedback while it's running. Thanks again. -------------------- I'm on a horse.
|
|
|
|
Apr 11 2005, 22:02
Post
#28
|
|
|
Group: Members Posts: 92 Joined: 7-September 02 From: Germany Member No.: 3321 |
QUOTE (Andrea @ Mar 27 2005, 03:52 PM) Could anybody here with a working foo_cue_ex-Plugin post his/her foobar2000 configuration and installed plugins? I'm in desperate need of a program that has the functionality of exporting a cue-sheet of a playlist. The way of decoding to wav, then running the program presented later in this thread does not apply since it involves too much disk space and time needed. Unfortunately, I'm active in Java programming only, so I'm unable to pick up the work of the original author. Anybody here who may become involved with the task? Thanks, Michael |
|
|
|
Apr 11 2005, 22:19
Post
#29
|
|
![]() Group: Super Moderator Posts: 4887 Joined: 12-August 04 From: Exeter, UK Member No.: 16217 |
I agree that a foobar component would make the most sense in this situation.
I also believe it would be relatively easy for a C++ programmer with a little SDK experience to create. @species007, out of interest: how do you require the cuesheet to be formatted, one file per track, or one file for the whole playlist? I.e.: do you want to component to treat all tracks as if they were one file, or as separate files? -------------------- I'm on a horse.
|
|
|
|
Apr 11 2005, 23:56
Post
#30
|
|
|
Group: Members Posts: 92 Joined: 7-September 02 From: Germany Member No.: 3321 |
QUOTE (Synthetic Soul @ Apr 11 2005, 11:19 PM) I agree that a foobar component would make the most sense in this situation. I also believe it would be relatively easy for a C++ programmer with a little SDK experience to create. @species007, out of interest: how do you require the cuesheet to be formatted, one file per track, or one file for the whole playlist? I.e.: do you want to component to treat all tracks as if they were one file, or as separate files? Thanks for your quick reply. I don't know what routines the foobar SDK provides to 3rd party programmers. In my opinion, the main reason for using a foobar-plugin to create a cuesheet directly from foobar itself lies in its ability to write the exact cue points of several independent tracks before they are combined into one large file (as described above), such as audiobooks consisting of separate track rips. Thus, the component should primarily with the request to create a cuesheet with one file for the whole playlist in mind. Selected tracks are taken and written to the cuesheet file, leaving the task of creating the actual media file to the user. Did I point it out clearly enough? I hope everything was understandable :-) Bye Michael |
|
|
|
Apr 12 2005, 11:10
Post
#31
|
|
![]() Group: Super Moderator Posts: 4887 Joined: 12-August 04 From: Exeter, UK Member No.: 16217 |
QUOTE (species007 @ Apr 11 2005, 11:56 PM) I don't know what routines the foobar SDK provides to 3rd party programmers. Neither do I, but I am pretty certain there will be facility to query a playlist and find the files used and the exact length of each track... and that's all we need really. QUOTE (species007 @ Apr 11 2005, 11:56 PM) In my opinion, the main reason for using a foobar-plugin to create a cuesheet directly from foobar itself lies in its ability to write the exact cue points of several independent tracks before they are combined into one large file (as described above), such as audiobooks consisting of separate track rips. Thus, the component should primarily with the request to create a cuesheet with one file for the whole playlist in mind. Selected tracks are taken and written to the cuesheet file, leaving the task of creating the actual media file to the user. Exactly. Diskwriter being the obvious choice, to create the image file from the same playlist. NB: For those that want to create a cuesheet for individual files, as foo_cue_ex appeared to previously do, you can just use the following as your copy command ("Preferences > Display > Title formatting > Copy command"): CODE FILE "%_path%" $if($stricmp(%__codec%,MP3),MP3,$if($stricmp(%__codec%,AIFF),AIFF,WAVE))$char(10) TRACK $num(%_playlist_number%,2) AUDIO$char(10) $if(%title%, TITLE "%title%"$char(10),) $if(%artist%, PERFORMER "%artist%"$char(10),) INDEX 01 00:00:00 Select all the tracks, right-click and choose "Copy names" (or press Ctrl+C), then paste into a new text file and save as <name>.cue. Edit: updated copy code - now correctly uses the FILE type (MP3, AIFF, or WAVE) This post has been edited by Synthetic Soul: Jul 24 2005, 20:03 -------------------- I'm on a horse.
|
|
|
|
Apr 12 2005, 15:02
Post
#32
|
|
|
Group: Members Posts: 92 Joined: 7-September 02 From: Germany Member No.: 3321 |
QUOTE (Synthetic Soul @ Apr 12 2005, 12:10 PM) Neither do I, but I am pretty certain there will be facility to query a playlist and find the files used and the exact length of each track... and that's all we need really. Now the only thing we really need is an ambitious developer willing to dedicate some days of work (I'm sure it won't take longer since it should be trivial work) to this project ... QUOTE (Synthetic Soul @ Apr 12 2005, 12:10 PM) NB: For those that want to create a cuesheet for individual files, as foo_cue_ex appeared to previously do, you can just use the following as your copy command ("Preferences > Display > Title formatting > Copy command"): CODE FILE "%_path%"$char(10) TRACK $num(%_playlist_number%,2) AUDIO$char(10) $if(%title%, TITLE "%title%"$char(10),) $if(%artist%, PERFORMER "%artist%"$char(10),) INDEX 01 00:00:00 Select all the tracks, right-click and choose "Copy names" (or press Ctrl+C), then paste into a new text file and save as <name>.cue. Cool idea, didn't make that up myself before |
|
|
|
Apr 23 2005, 10:30
Post
#33
|
|
|
Group: Members Posts: 50 Joined: 4-November 03 From: Londonas, UK Member No.: 9650 |
Ooops, guys. It seems I've been away for too long
Yes, foo_cue_ex is a bit out of date. When new SDK came out, I couldn't get my cue export feature to work, so I removed it. Just didn't have any time to look at it afterwards. I'll try to fix it ASAP. Regards, Stepan -------------------- B KaCKe.
|
|
|
|
Apr 23 2005, 11:54
Post
#34
|
|
|
Group: Members (Donating) Posts: 55 Joined: 8-November 02 Member No.: 3721 |
QUOTE (WigBaM @ Apr 23 2005, 10:30 AM) Ooops, guys. It seems I've been away for too long :P Yes, foo_cue_ex is a bit out of date. When new SDK came out, I couldn't get my cue export feature to work, so I removed it. Just didn't have any time to look at it afterwards. I'll try to fix it ASAP. Stepan, I have a couple other requests .. if you don't mind looking at them. It seems that with certain components foo_cue_ex stops working. I assume maybe the standard cue sheet reader is loaded after foo_cue_ex in these instances? The two components that I have to remove now are foo_flaccer and foo_matroska. It seems to be fairly random as to whether it works or doesn't with various other components. I thought it was fixed the last time you updated foo_cue_ex, but I have been having intermittent problems with it since. Also, can you force the tags to uppercase (or have that as an option)? I sometimes get an REM Date or REM Genre tagged in the cue sheet instead of REM DATE or REM GENRE. Thanks! |
|
|
|
Apr 23 2005, 12:13
Post
#35
|
|
![]() Group: Super Moderator Posts: 4887 Joined: 12-August 04 From: Exeter, UK Member No.: 16217 |
QUOTE (WigBaM @ Apr 23 2005, 10:30 AM) Ooops, guys. It seems I've been away for too long Yes, foo_cue_ex is a bit out of date. When new SDK came out, I couldn't get my cue export feature to work, so I removed it. Just didn't have any time to look at it afterwards. I'll try to fix it ASAP. Regards, Stepan Ah, cool - just the man for the job. My only request is the facility to create a cuesheet for the current playlist assuming all tracks are from the same image file (i.e.: a cuesheet with many tracks referring to one file). This will allow me to create an image file from mutiple track files (of varying format) using Diskwriter, and then create an accompanying cuesheet for that image using foo_cue_ex. I would be very grateful for this functionality. -------------------- I'm on a horse.
|
|
|
|
Apr 23 2005, 17:06
Post
#36
|
|
|
Group: Members Posts: 24 Joined: 19-March 02 Member No.: 1564 |
It'd be nice if foo_cue_ex could include a REM TITLE too, because .cue doesn't seem to allow " (double quotes) in its TITLE field.
|
|
|
|
May 15 2005, 16:08
Post
#37
|
|
|
Group: Members Posts: 92 Joined: 7-September 02 From: Germany Member No.: 3321 |
WigBaM: are there any news from foo_cue_ex plugin?
|
|
|
|
Jun 8 2005, 11:02
Post
#38
|
|
![]() Group: Super Moderator Posts: 4887 Joined: 12-August 04 From: Exeter, UK Member No.: 16217 |
Another request, when foo_cue_ex is redeveloped for foobar 0.9.
As per the following threads, would you consider wrapping any field name or value which contains spaces in quotes? E.g.: REM COMMENT "This is a field value with spaces in" REM "MY COMMENT" "This is a field name and field value with spaces in" Threads:As nyaochi points out, it is the standard in cuesheets to surround any value that contains spaces with quotes. It's good to maintain standards in my opinion. Edit: QUOTE (cynix @ Apr 23 2005, 05:06 PM) It'd be nice if foo_cue_ex could include a REM TITLE too, because .cue doesn't seem to allow " (double quotes) in its TITLE field. IMHO double quotes within a TITLE command, or any command, should simply be substituted for single quotes. Duplicating information to a REM command just over-complicates things. This post has been edited by Synthetic Soul: Jun 8 2005, 11:09 -------------------- I'm on a horse.
|
|
|
|
Jun 24 2005, 13:23
Post
#39
|
|
![]() Group: Super Moderator Posts: 4887 Joined: 12-August 04 From: Exeter, UK Member No.: 16217 |
If you simply want a foobar component to create an image cuesheet from a playlist, as per my original post, take a look at foo_cuesheetcreator.
Edit: Or now there is Diskwriter with cuesheet generation for single file output. This post has been edited by Synthetic Soul: Jul 4 2005, 09:24 -------------------- I'm on a horse.
|
|
|
|
Jun 25 2005, 23:25
Post
#40
|
|
![]() Group: Members (Donating) Posts: 543 Joined: 19-March 04 From: Alberta, Canada Member No.: 12841 |
QUOTE (jasnic02 @ Apr 23 2005, 02:54 AM) I have a couple other requests .. if you don't mind looking at them. It seems that with certain components foo_cue_ex stops working. I assume maybe the standard cue sheet reader is loaded after foo_cue_ex in these instances? The two components that I have to remove now are foo_flaccer and foo_matroska. I too would like these implemented. I've been having issues getting foo_cue_ex to work reading extended cuesheet info on most machines I've been trying to get it to work on. I'm not sure why... the first machine worked fine, and as far as I can tell, the configuration on all of them is very close. I'll see if removing flaccer and matroska as per jasnic02's suggestion helps. I'm hoping that WigBam will be able to update the plugin for foobar 0.9 soon after its release... or even better, if it were incorporated into the actual base of foobar2000 0.9. |
|
|
|
Jun 25 2005, 23:42
Post
#41
|
|
![]() Group: Members (Donating) Posts: 543 Joined: 19-March 04 From: Alberta, Canada Member No.: 12841 |
Getting rid of matroska (I just renamed the extension to "dll.REMOVED") made foo_cue_ex work again. I didn't need to remove flaccer. Thanks for the tip jasnic02. Hopefully WigBam can fix this in the future.
|
|
|
|
Apr 8 2006, 19:32
Post
#42
|
|
|
Group: Members Posts: 92 Joined: 7-September 02 From: Germany Member No.: 3321 |
Hi everybody,
to raise the question again about how to create a cuesheet from a playlist, this time from foobar 0.9.x: since foo_cue_ex does not work any longer with the new major version number, does WigBam intend to update the plugin to the new SDK, or does any other solution exist? Thanks |
|
|
|
Apr 9 2006, 08:18
Post
#43
|
|
![]() Group: Super Moderator Posts: 4887 Joined: 12-August 04 From: Exeter, UK Member No.: 16217 |
foobar's Converter can do this natively now, when converting multiple tracks to an image.
That said, I also think there is a place for a component that will just create the cuesheet, like foo_cuesheetcreator for 0.8.3. -------------------- I'm on a horse.
|
|
|
|
Apr 13 2006, 21:53
Post
#44
|
|
|
Group: Members Posts: 92 Joined: 7-September 02 From: Germany Member No.: 3321 |
|
|
|
|
May 4 2006, 22:51
Post
#45
|
|
|
Group: Members Posts: 14 Joined: 26-August 05 Member No.: 24136 |
|
|
|
|
May 10 2006, 21:26
Post
#46
|
|
![]() Group: Super Moderator Posts: 4887 Joined: 12-August 04 From: Exeter, UK Member No.: 16217 |
I just came across this:
http://tmp.reharmonize.net/foobar/ foo_cuesheet_creator_0.4.3a.zip The text file mentions my name, so I am assuming that it is based on foo_cuesheetcreator for 0.8.3. However, it seems to be a lot better. You can create both single file and multi-file cuesheets, select the files to be included, and it records genre, date and RG values. Anyone know anything about this? Edit: Component info in foobar says: Primary Author: Brian Peyton Additional Coding: Neil Popham (me) Haru Ayana@Re:harmonize Based on the Component development tutorial step 1 by: Holger Stenger So, thanks to Haru Ayana I guess. This post has been edited by Synthetic Soul: May 10 2006, 21:31 -------------------- I'm on a horse.
|
|
|
|
Dec 16 2008, 10:31
Post
#47
|
|
|
Group: Members Posts: 4 Joined: 2-September 07 From: Russia Member No.: 46711 |
Synthetic Soul
Very useful job! Very small improvement needed and will be great. When you are making (ANSI) cue sheet by tracks, you do take in account file names. Just to the same when you are making _CDImage.cue (ANS). Means, instead of: CODE TRACK XX AUDIO INDEX 01 xx:xx:xx to create (suppose that our file name is in format: Multimedia File Name_Extension)): CODE TRACK XX AUDIO TITLE "Multimedia File Name" INDEX 01 xx:xx:xx I know that file name can have another format as: 01_Multimedia File Name_Extension but leave some job to be done by user. Probably no tough job for the person who are familiar with the source code. And about Unicode... ANSI is much more compatible with all systems. |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 19th May 2013 - 18:00 |