LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 12-17-2014, 12:25 PM   #1
WiseDraco
Member
 
Registered: Nov 2006
Location: Europe,Latvia,Riga
Distribution: slackware,slax, OS X, exMandriva
Posts: 591

Rep: Reputation: 73
Problem splitting FLAC files...


Hello!
I have some FLAC disk images with CUE, and want to split it in tracks.
Slackware64 14.1
Installed gCue2tracks
try to convert, and get:

Decoding to wav
split tracks
split error
cleaning temp

on all my images...
maybe anyone can help with this?


P.S .cue file:

REM GENRE "Symphonic Metal"
REM DATE 2011
REM DISCID BD11520D
REM COMMENT "ExactAudioCopy v0.99pb5"
PERFORMER "Nightwish"
TITLE "Imaginaerum - Bonus CD"
FILE "Nightwish - Imaginaerum - Bonus CD.flac" WAVE
TRACK 01 AUDIO
TITLE "Taikatalvi"
PERFORMER "Nightwish"
INDEX 01 00:00:00
TRACK 02 AUDIO
TITLE "Storytime"
PERFORMER "Nightwish"
INDEX 01 02:35:35
TRACK 03 AUDIO
TITLE "Ghost River"
PERFORMER "Nightwish"
INDEX 01 07:57:57
TRACK 04 AUDIO
TITLE "Slow, Love, Slow"
PERFORMER "Nightwish"
INDEX 01 13:25:67
TRACK 05 AUDIO
TITLE "i Want My Tears Back"
PERFORMER "Nightwish"
INDEX 01 19:16:27
TRACK 06 AUDIO
TITLE "Scaretale"
PERFORMER "Nightwish"
INDEX 01 24:23:70
TRACK 07 AUDIO
TITLE "Arabesque"
PERFORMER "Nightwish"
INDEX 01 31:55:71
TRACK 08 AUDIO
TITLE "Turn Loose The Mermaids"
PERFORMER "Nightwish"
INDEX 01 34:53:41
TRACK 09 AUDIO
TITLE "Rest Calm"
PERFORMER "Nightwish"
INDEX 01 39:13:21
TRACK 10 AUDIO
TITLE "The Crow, The Owl And The Dove"
PERFORMER "Nightwish"
INDEX 01 46:15:64
TRACK 11 AUDIO
TITLE "Last Ride Of The Day"
PERFORMER "Nightwish"
INDEX 01 50:26:17
TRACK 12 AUDIO
TITLE "Song Of Myself"
PERFORMER "Nightwish"
INDEX 01 54:58:50
TRACK 13 AUDIO
TITLE "Imaginaerum"
PERFORMER "Nightwish"
INDEX 01 67:36:19

Last edited by WiseDraco; 12-17-2014 at 12:34 PM.
 
Old 12-18-2014, 02:12 PM   #2
Captain Pinkeye
Member
 
Registered: Oct 2012
Location: The Czech Republic
Posts: 280

Rep: Reputation: 98
I always used shntool & cuetools (both have slackbuild), like this:
Code:
cuebreakpoints sample.cue | shnsplit -o wav sample.wav
Apparently, newer shntool is able to read .cue by itself, thus simple
Code:
shnsplit -f file.cue file.ape
should suffice.
 
1 members found this post helpful.
Old 12-18-2014, 02:33 PM   #3
WiseDraco
Member
 
Registered: Nov 2006
Location: Europe,Latvia,Riga
Distribution: slackware,slax, OS X, exMandriva
Posts: 591

Original Poster
Rep: Reputation: 73
Quote:
Originally Posted by Captain Pinkeye View Post
I always used shntool & cuetools (both have slackbuild), like this:
Code:
cuebreakpoints sample.cue | shnsplit -o wav sample.wav
Apparently, newer shntool is able to read .cue by itself, thus simple
Code:
shnsplit -f file.cue file.ape
should suffice.

Thank you very much!
Looks like, it working - in your example it splitting by .wav files, if add option "-o flac", then it split in flac files.
Strange,a gCue2tracks not working, but if we have another working solution, then all is ok. especially, shnsplit is console-way splitter, who is better than gui-based for me

Thank you again, and have a nice day!
 
Old 12-18-2014, 02:43 PM   #4
Ihatewindows522
Member
 
Registered: Oct 2014
Location: Fort Wayne
Distribution: Ubuntu 16.04 LTS
Posts: 616
Blog Entries: 2

Rep: Reputation: 166Reputation: 166
Quote:
Originally Posted by WiseDraco View Post
Hello!
I have some FLAC disk images with CUE, and want to split it in tracks.
Slackware64 14.1
Installed gCue2tracks
try to convert, and get:

Decoding to wav
split tracks
split error
cleaning temp

on all my images...
maybe anyone can help with this?


P.S .cue file:

REM GENRE "Symphonic Metal"
REM DATE 2011
REM DISCID BD11520D
REM COMMENT "ExactAudioCopy v0.99pb5"
PERFORMER "Nightwish"
TITLE "Imaginaerum - Bonus CD"
FILE "Nightwish - Imaginaerum - Bonus CD.flac" WAVE
TRACK 01 AUDIO
TITLE "Taikatalvi"
PERFORMER "Nightwish"
INDEX 01 00:00:00
TRACK 02 AUDIO
TITLE "Storytime"
PERFORMER "Nightwish"
INDEX 01 02:35:35
TRACK 03 AUDIO
TITLE "Ghost River"
PERFORMER "Nightwish"
INDEX 01 07:57:57
TRACK 04 AUDIO
TITLE "Slow, Love, Slow"
PERFORMER "Nightwish"
INDEX 01 13:25:67
TRACK 05 AUDIO
TITLE "i Want My Tears Back"
PERFORMER "Nightwish"
INDEX 01 19:16:27
TRACK 06 AUDIO
TITLE "Scaretale"
PERFORMER "Nightwish"
INDEX 01 24:23:70
TRACK 07 AUDIO
TITLE "Arabesque"
PERFORMER "Nightwish"
INDEX 01 31:55:71
TRACK 08 AUDIO
TITLE "Turn Loose The Mermaids"
PERFORMER "Nightwish"
INDEX 01 34:53:41
TRACK 09 AUDIO
TITLE "Rest Calm"
PERFORMER "Nightwish"
INDEX 01 39:13:21
TRACK 10 AUDIO
TITLE "The Crow, The Owl And The Dove"
PERFORMER "Nightwish"
INDEX 01 46:15:64
TRACK 11 AUDIO
TITLE "Last Ride Of The Day"
PERFORMER "Nightwish"
INDEX 01 50:26:17
TRACK 12 AUDIO
TITLE "Song Of Myself"
PERFORMER "Nightwish"
INDEX 01 54:58:50
TRACK 13 AUDIO
TITLE "Imaginaerum"
PERFORMER "Nightwish"
INDEX 01 67:36:19
You may not be able to do this, but this is what I would do:

Rip the CD using VLC
Split the file into tracks with Audacity

I've never heard of doing it any other way than to just rip the music off the disk.

EDIT: Oh, sorry, didn't see you were using Slack. Maybe the installation of a DE is in order?
 
  


Reply

Tags
flac, gcue2tracks, linux, splitting


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Out of ffmpeg and flac which should be used to convert .wav files to .flac? Why? Aquarius_Girl Linux - Software 5 12-06-2014 05:19 PM
[SOLVED] mpd - can't seek through FLAC files szlak Linux - Desktop 4 02-20-2014 10:40 AM
k3b issue with flac files: doesn't recognise the length of files mark_alfred Linux - Software 4 06-22-2010 01:21 AM
Playing FLAC Files in Suse gemini2011 Linux - Software 15 12-20-2004 04:09 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:02 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration