kingmann7317 / jmm

Automatically exported from code.google.com/p/jmm
0 stars 0 forks source link

Multi Audio problems with File Rename Utility #416

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
// Audio Type
DO ADD '.%aud'

The above script results in FLACFLAC or AACFLACFLAC when it comes across a 
multi audio file. The notes above say:

%aud Audio codec (tracks separated with '

I don't see any separation and I only care about one track, so I just use:

DO REPLACE 'AACAAC' 'AAC'
DO REPLACE 'FLACFLAC' 'FLAC'
// etc...

The above code can become lengthy if groups release different tracks with 
different codecs, such as:
jpn audio: FLAC
eng audio: AAC
kor audio: AAC

Would be great to be able to specify track language and get codec for specified 
track:

IF D(japanese) DO ADD '.%aud'

So it should look for the jpn track and get that codec only.

Original issue reported on code.google.com by Ivan...@gmail.com on 14 Mar 2013 at 11:21

GoogleCodeExporter commented 8 years ago
I'll add that this issue also results in tests for a particular audio format on 
files with multiple audio tracks. 

For instance:

IF J(FLAC) DO ADD 'FLAC '

Returns nothing on a file with multiple tracks, even if one or more of them is 
FLAC.

Original comment by Catma...@gmail.com on 9 Aug 2014 at 5:09

GoogleCodeExporter commented 8 years ago
btw, I think the description was trying to say the tracks would be separated 
with the ' character, which is how it displays in the file details 
(FLAC'AAC'AAC for example). 

I have a feeling that it's actually trying to return it as such but it's 
getting messed up due to the scripts use of ' and no apparent way to escape it 
for use as plain text, which may be the root cause of this issue.

Original comment by Catma...@gmail.com on 9 Aug 2014 at 5:17

GoogleCodeExporter commented 8 years ago

Original comment by werndly...@gmail.com on 12 Aug 2014 at 10:46

GoogleCodeExporter commented 8 years ago
https://github.com/japanesemediamanager/jmmclient/issues/48

Original comment by werndly...@gmail.com on 19 Aug 2014 at 8:17