Giter Club home page Giter Club logo

cue2tracks's People

Watchers

 avatar

cue2tracks's Issues

Add replay gain support

For mp3, ogg, flac, wavpack,..

Original issue reported on code.google.com by sergey.dryabzhinsky on 7 Dec 2011 at 6:43

running at the same time

What steps will reproduce the problem?
1. running two different files in two different terminals at the same time.

What version of the product are you using? On what operating system?
Ubuntu 12.04

Please provide any additional information below.
one of the terminals show me 
    Track 7: Warning
    * Taging...Error: Cant tag '/tmp/cue2tracks-FzIfzd/07.flac'
Error: Cant tag '/tmp/cue2tracks-FzIfzd/07.flac'
    [failed]


Original issue reported on code.google.com by [email protected] on 26 Feb 2014 at 7:27

Problem when

What steps will reproduce the problem?
1. use a cue file where album title contains `*'
2. run `cue2tracks.sh -o '1/%A/%N-%t' 1.cue'
3. press Y to apply option

What is the expected output? What do you see instead?
Expected: move all generated file to the directory
Instead: created all kinds of wierd directory structure

What version of the product are you using? On what operating system?
0.2.16-1, on Archlinux

Please provide any additional information below.

I tracked the bug to the function get_out_filename, where by changing

    tstr="${outFormatStr}.${outExt}"
    tstr=${tstr//\%A/${temp_AT}}
    tstr=${tstr//\%G/${temp_AG}}
    tstr=${tstr//\%P/${temp_AP}}
    tstr=${tstr//\%D/${temp_AD}}
    tstr=${tstr//\%t/${temp_TT}}
    tstr=${tstr//\%p/${temp_TP}}
    tstr=${tstr//\%g/${temp_TG}}
    tstr=${tstr//\%n/${tags_TRACK_NUMBER}}
    tstr=${tstr//\%N/${tags_TRACK_ZNUMBER}}
    echo ${tstr}

to

    tstr="${outFormatStr}.${outExt}"
    tstr="${tstr//\%A/${temp_AT}}"
    tstr="${tstr//\%G/${temp_AG}}"
    tstr="${tstr//\%P/${temp_AP}}"
    tstr="${tstr//\%D/${temp_AD}}"
    tstr="${tstr//\%t/${temp_TT}}"
    tstr="${tstr//\%p/${temp_TP}}"
    tstr="${tstr//\%g/${temp_TG}}"
    tstr="${tstr//\%n/${tags_TRACK_NUMBER}}"
    tstr="${tstr//\%N/${tags_TRACK_ZNUMBER}}"
    tstr="${tstr//\%a/${tags_ALBUM_NUMBER}}"
    echo "${tstr}"

can solve it.

Original issue reported on code.google.com by [email protected] on 9 Dec 2014 at 4:17

Update usage help

Review and update help for tool usage.

1. forgot about -W option - force decode sound image to WAV

Original issue reported on code.google.com by sergey.dryabzhinsky on 25 Jul 2013 at 10:01

[patch] Alternative file extension search

What steps will reproduce the problem?
1. Get the ape/cue file pair with ".wav" file specification in cue file
2. Run cue2tracks on this cue file

What is the expected output? What do you see instead?
I see "Error: File '/path/to/file.wav' not found!", and it's ok.
Then I edit cue file (and do iconv manually if it isn't in utf8 encoding) to 
correct the extension.
But if cue2tracks could search for another file extensions (ape, flac, mp3 
etc.) it would be great.

What version of the product are you using? On what operating system?
cue2tracks 0.2.14
openSuSE 12.2 x86_64

Please provide any additional information below.
Patch file attached, works fine for me.
Example output:
Check input codec...
    File to split: '/path/to/file.wav'
    File '/path/to/file.wav' not found, trying other extensions...
    Found: /path/to/file.ape
    Setting input codec to 'ape'

Original issue reported on code.google.com by [email protected] on 11 Feb 2013 at 8:48

Attachments:

Add support for flacuda/flaccl support [patch]

Please add support for GPU-accelerated flac encoder 
http://www.cuetools.net/wiki/FLACCL (former flacuda).

I'll attach patches for your cue2tracks-0.2.16.ebuild and cue2tracks script.

Package media-sound/flaccl available in overlay "powerman".
Patched media-sound/cue2tracks already in overlay "powerman".

Original issue reported on code.google.com by [email protected] on 14 Sep 2013 at 7:59

Attachments:

Can't encode when one track in CUE

What steps will reproduce the problem?
1. Find CDimage & CUE with one track
2. Start splitting...
3. Error: 'file 01.flac not found' when try to set tags or move file...

What is the expected output? What do you see instead?


Please use labels and text to provide additional information.


Original issue reported on code.google.com by sergey.dryabzhinsky on 29 Jul 2011 at 5:45

Can't set COMPOSER tag if it contains two or more words

What steps will reproduce the problem?
1. Set optional data for tag COMPOSER with two words in it
2. Start splitting...

What is the expected output? What do you see instead?

Expected: all done well, data set, track encoded
Got: error while set tag data


Original issue reported on code.google.com by sergey.dryabzhinsky on 29 Jul 2011 at 5:52

Stop encoding on BREAK

What steps will reproduce the problem?
1. start encoding
2. press ctrl+c
3. script exited but shntool is still runing in background

What is the expected output? What do you see instead?
Encoding process is stopped too...



Original issue reported on code.google.com by sergey.dryabzhinsky on 19 Dec 2011 at 4:58

[improvement] script should honor TMPDIR

Using cue2tracks 0.2.14 in Archlinux. I run:

$ TMPDIR=/var/tmp cue2tracks ...

I'd expect the script to honor the TMPDIR, but it keeps using a /tmp directory. 
I checked the code and found this:

  tempDirName=`mktemp -q -d /tmp/${scriptName}-XXXXXX`

The problem is that the template is specified so mktemp ignores TMPDIR. The 
simplest solution, as far as I know:

  tempDirName=`mktemp -q -d --tmpdir="${TMPDIR:-.}" ${scriptName}-XXXXXX`

Original issue reported on code.google.com by tokland on 9 May 2013 at 2:50

Save last options at user $HOME directory

Save codecs options, something else...

At $HOME/.cue2tracks/config

And read it at nexr script run.

May be script need new parameter for save options.

Original issue reported on code.google.com by sergey.dryabzhinsky on 29 Jul 2011 at 5:59

Broken "Fix: Last empty line missing..." for read only cue files

What steps will reproduce the problem?
1. Read-only cue file with missing empty last line
2. cue2track makes a temporary file with the same permissions like the original 
cue file
3. /usr/bin/cue2tracks: line 745: /tmp/cue2tracks-M52iUS/CDImage.line.cue: 
Permission denied

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?
Version: 0.2.11

Please provide any additional information below.

A simple fix - add a line:
chmod 644 "${ncn}" 
after the line 744 in the file cue2tracks.

Original issue reported on code.google.com by [email protected] on 27 Sep 2012 at 8:55

Check tags for mp3 files

What steps will reproduce the problem?
1. Split into mp3 tracks with tags from CUE
2. Open in Amarok
3.

What is the expected output?
Readable tags...

What do you see instead?
Unreadable tags?

Please use labels and text to provide additional information.


Original issue reported on code.google.com by sergey.dryabzhinsky on 5 Nov 2011 at 12:24

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.