This file is indexed.

/usr/bin/tracksplit is in audiotools 3.1.1-1+b1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
#!/usr/bin/python3

# Audio Tools, a module and set of tools for manipulating audio data
# Copyright (C) 2007-2015  Brian Langenberger

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

import sys
import os
import os.path
import audiotools
import audiotools.cue
import audiotools.ui
import audiotools.text as _
import termios
from fractions import Fraction


def merge_metadatas(metadatas):
    if len(metadatas) == 0:
        return audiotools.MetaData()
    elif len(metadatas) == 1:
        return metadatas[0]
    else:
        merged = metadatas[0]
        for to_merge in metadatas[1:]:
            merged = merged.intersection(to_merge)
        return merged


def split(progress, source_audiofile, destination_filename,
          destination_class, compression, metadata,
          pcm_frames_offset, total_pcm_frames):
    try:
        pcmreader = source_audiofile.to_pcm()

        # if PCMReader has seek()
        # use it to reduce the amount of frames to skip
        if hasattr(pcmreader, "seek") and callable(pcmreader.seek):
            pcm_frames_offset -= pcmreader.seek(pcm_frames_offset)

        destination_audiofile = destination_class.from_pcm(
            str(destination_filename),
            audiotools.PCMReaderProgress(
                audiotools.PCMReaderWindow(pcmreader,
                                           pcm_frames_offset,
                                           total_pcm_frames),
                total_pcm_frames,
                progress),
            compression,
            total_pcm_frames)

        if metadata is not None:
            destination_audiofile.set_metadata(metadata)
    except KeyboardInterrupt:
        # remove partially split file, if any
        try:
            os.unlink(str(destination_filename))
        except OSError:
            pass

    return str(destination_filename)


def split_raw(progress, source_filename,
              sample_rate, channels, channel_mask, bits_per_sample,
              destination_filename, destination_class, compression,
              metadata, pcm_frames_offset, total_pcm_frames):
    f = open(source_filename, "rb")
    try:
        # skip initial offset
        f.seek(pcm_frames_offset * channels * (bits_per_sample // 8))

        destination_audiofile = destination_class.from_pcm(
            str(destination_filename),
            audiotools.PCMReaderProgress(
                audiotools.PCMReaderHead(
                    audiotools.PCMFileReader(file=f,
                                             sample_rate=sample_rate,
                                             channels=channels,
                                             channel_mask=channel_mask,
                                             bits_per_sample=bits_per_sample),
                    total_pcm_frames),
                total_pcm_frames,
                progress),
            compression,
            total_pcm_frames)

        if metadata is not None:
            destination_audiofile.set_metadata(metadata)

        return str(destination_filename)
    except KeyboardInterrupt:
        # remove partially split file, if any
        try:
            os.unlink(str(destination_filename))
        except OSError:
            pass
    finally:
        f.close()


if (__name__ == '__main__'):
    import argparse

    parser = argparse.ArgumentParser(description=_.DESCRIPTION_TRACKSPLIT)

    parser.add_argument("--version",
                        action="version",
                        version="Python Audio Tools %s" % (audiotools.VERSION))

    parser.add_argument("-I", "--interactive",
                        action="store_true",
                        default=False,
                        dest="interactive",
                        help=_.OPT_INTERACTIVE_OPTIONS)

    parser.add_argument("--cue",
                        dest="cuesheet",
                        metavar="FILENAME",
                        help=_.OPT_CUESHEET_TRACKSPLIT)

    parser.add_argument("-V", "--verbose",
                        dest="verbosity",
                        choices=audiotools.VERBOSITY_LEVELS,
                        default=audiotools.DEFAULT_VERBOSITY,
                        help=_.OPT_VERBOSE)

    conversion = parser.add_argument_group(_.OPT_CAT_ENCODING)

    conversion.add_argument(
        "-t", "--type",
        dest="type",
        choices=sorted(list(t.NAME for t in audiotools.AVAILABLE_TYPES
                            if t.supports_from_pcm()) + ["help"]),
        help=_.OPT_TYPE)

    conversion.add_argument("-q", "--quality",
                            dest="quality",
                            help=_.OPT_QUALITY)

    conversion.add_argument("-d", "--dir",
                            dest="dir",
                            default=".",
                            help=_.OPT_DIR)

    conversion.add_argument("--format",
                            default=None,
                            dest="format",
                            help=_.OPT_FORMAT)

    conversion.add_argument("-j", "--joint",
                            type=int,
                            default=audiotools.MAX_JOBS,
                            dest="max_processes",
                            help=_.OPT_JOINT)

    lookup = parser.add_argument_group(_.OPT_CAT_CD_LOOKUP)

    lookup.add_argument("--musicbrainz-server",
                        dest="musicbrainz_server",
                        default=audiotools.MUSICBRAINZ_SERVER,
                        metavar="HOSTNAME")

    lookup.add_argument("--musicbrainz-port",
                        type=int,
                        dest="musicbrainz_port",
                        default=audiotools.MUSICBRAINZ_PORT,
                        metavar="PORT")

    lookup.add_argument("--no-musicbrainz",
                        action="store_false",
                        dest="use_musicbrainz",
                        default=audiotools.MUSICBRAINZ_SERVICE,
                        help=_.OPT_NO_MUSICBRAINZ)

    lookup.add_argument("--freedb-server",
                        dest="freedb_server",
                        default=audiotools.FREEDB_SERVER,
                        metavar="HOSTNAME")

    lookup.add_argument("--freedb-port",
                        type=int,
                        dest="freedb_port",
                        default=audiotools.FREEDB_PORT,
                        metavar="PORT")

    lookup.add_argument("--no-freedb",
                        action="store_false",
                        dest="use_freedb",
                        default=audiotools.FREEDB_SERVICE,
                        help=_.OPT_NO_FREEDB)

    lookup.add_argument("-D", "--default",
                        dest="use_default",
                        action="store_true",
                        default=False,
                        help=_.OPT_DEFAULT)

    metadata = parser.add_argument_group(_.OPT_CAT_METADATA)

    metadata.add_argument("--album-number",
                          dest="album_number",
                          type=int,
                          default=0,
                          help=_.OPT_ALBUM_NUMBER)

    metadata.add_argument("--album-total",
                          dest="album_total",
                          type=int,
                          default=0,
                          help=_.OPT_ALBUM_TOTAL)

    metadata.add_argument("--replay-gain",
                          action="store_true",
                          default=None,
                          dest="add_replay_gain",
                          help=_.OPT_REPLAY_GAIN)

    metadata.add_argument("--no-replay-gain",
                          action="store_false",
                          default=None,
                          dest="add_replay_gain",
                          help=_.OPT_NO_REPLAY_GAIN)

    parser.add_argument("filename",
                        metavar="FILENAME",
                        help=_.OPT_INPUT_FILENAME)

    options = parser.parse_args()

    msg = audiotools.Messenger(options.verbosity == "quiet")

    # ensure interactive mode is available, if selected
    if options.interactive and (not audiotools.ui.AVAILABLE):
        audiotools.ui.not_available_message(msg)
        sys.exit(1)

    # get the AudioFile class we are converted to
    if options.type == 'help':
        audiotools.ui.show_available_formats(msg)
        sys.exit(0)
    if options.type is not None:
        AudioType = audiotools.TYPE_MAP[options.type]
    else:
        AudioType = audiotools.TYPE_MAP[audiotools.DEFAULT_TYPE]

    # ensure the selected compression is compatible with that class
    if options.quality == 'help':
        audiotools.ui.show_available_qualities(msg, AudioType)
        sys.exit(0)
    elif options.quality is None:
        options.quality = audiotools.__default_quality__(AudioType.NAME)
    elif options.quality not in AudioType.COMPRESSION_MODES:
        msg.error(_.ERR_UNSUPPORTED_COMPRESSION_MODE %
                  {"quality": options.quality,
                   "type": AudioType.NAME})
        sys.exit(1)

    try:
        filename = audiotools.Filename(options.filename)
        audiofile = audiotools.open(str(filename))
        input_filename = audiotools.Filename(audiofile.filename)
        input_filenames = {input_filename}
    except audiotools.UnsupportedFile:
        msg.error(_.ERR_UNSUPPORTED_FILE % (filename,))
        sys.exit(1)
    except audiotools.InvalidFile as err:
        msg.error(str(err))
        sys.exit(1)
    except IOError:
        msg.error(_.ERR_OPEN_IOERROR % (filename,))
        sys.exit(1)

    base_directory = options.dir
    encoded_filenames = []

    if options.cuesheet is not None:
        # grab the cuesheet we're using to split tracks
        # (this overrides an embedded cuesheet)
        try:
            cuesheet = audiotools.read_sheet(options.cuesheet)
            input_filenames.add(audiotools.Filename(options.cuesheet))
        except audiotools.SheetException as err:
            msg.error(err)
            sys.exit(1)
    else:
        cuesheet = audiofile.get_cuesheet()
        if cuesheet is None:
            msg.error(_.ERR_TRACKSPLIT_NO_CUESHEET)
            sys.exit(1)

    if not cuesheet.image_formatted():
        msg.error(_.ERR_CUE_INVALID_FORMAT)
        sys.exit(1)

    cuesheet_offsets = [cuesheet.track_offset(t) for t in
                        cuesheet.track_numbers()]

    cuesheet_lengths = [cuesheet.track_length(t) for t in
                        cuesheet.track_numbers()]

    audiofile_size = audiofile.seconds_length()

    if cuesheet_lengths[-1] is None:
        # last track length unknown, so ensure there's enough room
        # based on the total size of the source
        last_track_size = (audiofile_size -
                           sum(cuesheet_lengths[0:-1]) -
                           cuesheet.pre_gap())
        if last_track_size >= 0:
            cuesheet_lengths.pop()
            cuesheet_lengths.append(last_track_size)
        else:
            msg.error(_.ERR_TRACKSPLIT_OVERLONG_CUESHEET)
            sys.exit(1)
    else:
        # last track length is known, so ensure the size
        # of all lengths and the pre-gap is the same size as the source
        if (cuesheet.pre_gap() + sum(cuesheet_lengths)) != audiofile_size:
            msg.error(_.ERR_TRACKSPLIT_OVERLONG_CUESHEET)
            sys.exit(1)

    output_track_count = len(cuesheet)

    # check whether pre-gap data should be preserved, if any
    if cuesheet.pre_gap() > 0:
        with audiotools.BufferedPCMReader(audiofile.to_pcm()) as r:
            # this could be optimized better
            # but it is a rare and unusual case
            preserve_pre_gap = set(r.read(int(cuesheet.pre_gap() *
                                              audiofile.sample_rate()))) != {0}

            if preserve_pre_gap:
                cuesheet_offsets.insert(0, Fraction(0, 1))
                cuesheet_lengths.insert(0, cuesheet.pre_gap())
    else:
        preserve_pre_gap = False

    # use cuesheet to query metadata services for metadata choices
    try:
        metadata_choices = audiotools.sheet_metadata_lookup(
            sheet=cuesheet,
            total_pcm_frames=audiofile.total_frames(),
            sample_rate=audiofile.sample_rate(),
            musicbrainz_server=options.musicbrainz_server,
            musicbrainz_port=options.musicbrainz_port,
            freedb_server=options.freedb_server,
            freedb_port=options.freedb_port,
            use_musicbrainz=options.use_musicbrainz,
            use_freedb=options.use_freedb)
    except KeyboardInterrupt:
        msg.ansi_clearline()
        msg.error(_.ERR_CANCELLED)
        sys.exit(1)

    if preserve_pre_gap:
        # prepend "track 0" track to start of list for each choice
        for choice in metadata_choices:
            track_0 = merge_metadatas(choice)
            track_0.track_number = 0
            choice.insert(0, track_0)

    # populate any empty Album-level metadata fields
    # with those from original file, if any
    album_metadata = audiofile.get_metadata()
    if album_metadata is not None:
        album_fields = {attr: field for (attr, field) in
                        album_metadata.filled_fields()
                        if (attr in {"album_name",
                                     "artist_name",
                                     "performer_name",
                                     "composer_name",
                                     "conductor_name",
                                     "media",
                                     "catalog",
                                     "copyright",
                                     "publisher",
                                     "year",
                                     "date",
                                     "album_number",
                                     "album_total",
                                     "comment"})}

        for c in metadata_choices:
            for m in c:
                for (attr, field) in m.empty_fields():
                    if attr in album_fields:
                        setattr(m, attr, album_fields[attr])

    # populate any remaining metadata fields
    # with those from cuesheet, if any
    cuesheet_metadata = cuesheet.get_metadata()
    for c in metadata_choices:
        for (track_metadata,
             sheet_track) in zip(c[1:] if preserve_pre_gap else c, cuesheet):
            sheet_track_metadata = sheet_track.get_metadata()
            for (attr, field) in track_metadata.empty_fields():
                if ((sheet_track_metadata is not None) and
                    (getattr(sheet_track_metadata, attr) is not None)):
                    setattr(track_metadata,
                            attr,
                            getattr(sheet_track_metadata, attr))
                elif ((cuesheet_metadata is not None) and
                      (getattr(cuesheet_metadata, attr) is not None)):
                    setattr(track_metadata,
                            attr,
                            getattr(cuesheet_metadata, attr))

    # update MetaData with command-line album-number/total, if given
    if options.album_number != 0:
        for c in metadata_choices:
            for m in c:
                m.album_number = options.album_number

    if options.album_total != 0:
        for c in metadata_choices:
            for m in c:
                m.album_total = options.album_total

    input_filenames = \
        [input_filename] * (output_track_count + (1 if preserve_pre_gap else 0))

    # decide which metadata and output options to use when splitting tracks
    if options.interactive:
        track_labels = [_.LAB_TRACK_X_OF_Y % (i, output_track_count)
                        for i in range(0 if preserve_pre_gap else 1,
                                       output_track_count + 1)]

        # pick choice using interactive widget
        output_widget = audiotools.ui.OutputFiller(
            track_labels=track_labels,
            metadata_choices=metadata_choices,
            input_filenames=input_filenames,
            output_directory=options.dir,
            format_string=(options.format if
                           (options.format is not None) else
                           audiotools.FILENAME_FORMAT),
            output_class=AudioType,
            quality=options.quality,
            completion_label=_.LAB_TRACKSPLIT_APPLY)

        loop = audiotools.ui.urwid.MainLoop(
            output_widget,
            audiotools.ui.style(),
            screen=audiotools.ui.Screen(),
            unhandled_input=output_widget.handle_text,
            pop_ups=True)
        try:
            loop.run()
            msg.ansi_clearscreen()
        except (termios.error, IOError):
            msg.error(_.ERR_TERMIOS_ERROR)
            msg.info(_.ERR_TERMIOS_SUGGESTION)
            msg.info(audiotools.ui.xargs_suggestion(sys.argv))
            sys.exit(1)

        if not output_widget.cancelled():
            output_tracks = list(output_widget.output_tracks())
        else:
            sys.exit(0)
    else:
        # pick choice without using GUI
        try:
            output_tracks = list(
                audiotools.ui.process_output_options(
                    metadata_choices=metadata_choices,
                    input_filenames=input_filenames,
                    output_directory=options.dir,
                    format_string=options.format,
                    output_class=AudioType,
                    quality=options.quality,
                    msg=msg,
                    use_default=options.use_default))
        except audiotools.UnsupportedTracknameField as err:
            err.error_msg(msg)
            sys.exit(1)
        except (audiotools.InvalidFilenameFormat,
                audiotools.OutputFileIsInput,
                audiotools.DuplicateOutputFile) as err:
            msg.error(err)
            sys.exit(1)

    # perform actual track splitting and tagging
    jobs = zip(cuesheet_offsets, cuesheet_lengths, output_tracks)

    queue = audiotools.ExecProgressQueue(msg)

    if audiofile.seekable():
        for (offset, length, (output_class,
                              output_filename,
                              output_quality,
                              output_metadata)) in jobs:
            try:
                audiotools.make_dirs(str(output_filename))
            except OSError as err:
                msg.os_error(err)
                sys.exit(1)

            queue.execute(
                function=split,
                progress_text=output_filename.__unicode__(),
                completion_output=_.LAB_ENCODE % {
                    "source": audiotools.Filename(audiofile.filename),
                    "destination": output_filename},
                source_audiofile=audiofile,
                destination_filename=output_filename,
                destination_class=output_class,
                compression=output_quality,
                metadata=output_metadata,
                pcm_frames_offset=int(offset * audiofile.sample_rate()),
                total_pcm_frames=int(length * audiofile.sample_rate()))

        try:
            encoded_tracks = map(audiotools.open,
                                 queue.run(options.max_processes))
        except audiotools.EncodingError as err:
            msg.error(err)
            sys.exit(1)
        except KeyboardInterrupt:
            msg.error(_.ERR_CANCELLED)
            sys.exit(1)
    else:
        import tempfile

        # if input file isn't seekable

        # decode it into a single PCM blob of binary data
        temp_blob = tempfile.NamedTemporaryFile()
        cache_progress = audiotools.SingleProgressDisplay(
            msg, _.LAB_CACHING_FILE)
        try:
            audiotools.transfer_framelist_data(
                audiotools.PCMReaderProgress(
                    audiofile.to_pcm(),
                    audiofile.total_frames(),
                    cache_progress.update),
                temp_blob.write)
        except audiotools.DecodingError as err:
            cache_progress.clear_rows()
            msg.error(err)
            temp_blob.close()
            sys.exit(1)
        except KeyboardInterrupt:
            cache_progress.clear_rows()
            msg.error(_.ERR_CANCELLED)
            temp_blob.close()
            sys.exit(1)

        cache_progress.clear_rows()
        temp_blob.flush()

        # split the blob using multiple jobs
        for (offset, length, (output_class,
                              output_filename,
                              output_quality,
                              output_metadata)) in jobs:
            try:
                audiotools.make_dirs(str(output_filename))
            except OSError as err:
                msg.os_error(err)
                temp_blob.close()
                sys.exit(1)

            queue.execute(
                function=split_raw,
                progress_text=output_filename.__unicode__(),
                completion_output=_.LAB_ENCODE % {
                    "source": audiotools.Filename(audiofile.filename),
                    "destination": output_filename},
                source_filename=temp_blob.name,
                sample_rate=audiofile.sample_rate(),
                channels=audiofile.channels(),
                channel_mask=int(audiofile.channel_mask()),
                bits_per_sample=audiofile.bits_per_sample(),
                destination_filename=output_filename,
                destination_class=output_class,
                compression=output_quality,
                metadata=output_metadata,
                pcm_frames_offset=int(offset * audiofile.sample_rate()),
                total_pcm_frames=int(length * audiofile.sample_rate()))

        try:
            encoded_tracks = map(audiotools.open,
                                 queue.run(options.max_processes))
        except audiotools.EncodingError as err:
            msg.error(err)
            temp_blob.close()
            sys.exit(1)
        except KeyboardInterrupt:
            msg.error(_.ERR_CANCELLED)
            temp_blob.close()
            sys.exit(1)

        # then delete the blob when finished
        temp_blob.close()

    # apply ReplayGain to split tracks, if requested
    if (output_class.supports_replay_gain() and
        (options.add_replay_gain if options.add_replay_gain is not None else
         audiotools.ADD_REPLAYGAIN)):
        rg_progress = audiotools.ReplayGainProgressDisplay(msg)
        rg_progress.initial_message()
        try:
            # separate encoded files by album_name and album_number
            for album in audiotools.group_tracks(encoded_tracks):
                # add ReplayGain to groups of files
                # belonging to the same album

                audiotools.add_replay_gain(album, rg_progress.update)
        except ValueError as err:
            rg_progress.clear_rows()
            msg.error(err)
            sys.exit(1)
        except KeyboardInterrupt:
            rg_progress.clear_rows()
            msg.error(_.ERR_CANCELLED)
            sys.exit(1)
        rg_progress.final_message()