public
Description: Bash script to convert DTS audio to AC3 within a matroska file.
Homepage:
Clone URL: git://github.com/JakeWharton/mkvdts2ac3.git
Click here to lend your support to: mkvdts2ac3 and make a donation at www.pledgie.com !
mkvdts2ac3 / mkvdts2ac3.sh
100755 618 lines (525 sloc) 16.21 kb
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
#!/bin/bash
# mkvdts2ac3.sh - add an AC3 track to an MKV from its DTS
# Author: Jake Wharton <jakewharton@gmail.com>
# Website: http://jakewharton.com
# http://github.com/JakeWharton/mkvdts2ac3/
# Version: 1.0.5
# License:
# Copyright 2009 Jake Wharton
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
 
displayhelp() {
echo "Usage: $0 [options] <filename>"
echo "Options:"
echo " -c TITLE, Custom AC3 track title."
echo " --custom TITLE"
echo " -d, --default Mark AC3 track as default."
echo " -e, --external Leave AC3 track out of file. Does not modify the"
echo " original matroska file. This overrides '-n' and"
echo " '-d' arguments."
echo " -k, --keep-dts Keep external DTS track (implies '-n')."
echo " -n, --no-dts Do not retain the DTS track."
echo " -o MODE Pass a custom audio output mode to libdca."
echo " -p PRIORITY Modify niceness of executed commands."
echo " -t TRACKID,"
echo " --track TRACKID Specify alternate DTS track."
echo " -w FOLDER,"
echo " --wd FOLDER Specify alternate temporary working directory."
echo ""
echo " --test Print commands only, execute nothing."
echo " --debug Print commands and pause before executing each."
echo ""
echo " -h, --help Print command usage."
echo " -v, --version Print script version information."
}
 
 
 
# Used to time execution
START=$(date +%s)
 
# Display version header
echo "mkvdts2ac3-1.0.5 - by Jake Wharton <jakewharton@gmail.com>"
echo ""
 
# Debugging flags
# DO NOT EDIT THESE! USE --debug OR --test ARGUMENT INSTEAD.
PRINT=0
PAUSE=0
EXECUTE=1
 
dopause() {
if [ $PAUSE = 1 ]; then
read
fi
}
 
# Default values
PRIORITY=0
 
 
 
# Parse arguments and/or filename
while [ -z "$MKVFILE" ]; do
 
# If we're out of arguments no filename was passed
if [ $# -eq 0 ]; then
echo "ERROR: You must supply a filename."
echo ""
displayhelp
exit
fi
case "$1" in
 
"-c" | "--custom" )
# Use custom name for AC3 track
shift
DTSNAME=$1
;;
"-d" | "--default" )
# Only allow this if we aren't making the file external
if [ -z $EXTERNAL ]; then
DEFAULT=1
fi
;;
"-e" | "--external" )
EXTERNAL=1
# Don't allow -d or -n switches if they're already set
NODTS=0
KEEPDTS=0
DEFAULT=0
;;
"-k" | "--keep-dts" )
# Only allow external DTS track if muxing AC3 track
if [ -z $EXTERNAL ]; then
KEEPDTS=1
fi
 
;;
"-n" | "--no-dts" )
# Only allow this if we aren't making the file external
if [ -z $EXTERNAL ]; then
NODTS=1
fi
;;
"-o" )
# Move required audio mode value "up"
shift
AUDIOMODE=$1
;;
"-p" )
# Move required priority value "up"
shift
PRIORITY=$1
;;
"-t" | "--track" )
# Move required TRACKID argument "up"
shift
DTSTRACK=$1
;;
"-w" | "--wd" )
# Specify working directory manually
shift
WD=$1
;;
 
 
"--test" )
# Echo commands and do not execute
if [ $PAUSE = 1 ]; then
echo "WARNING: --test overrides previous --debug flag."
fi
PRINT=1
EXECUTE=0
;;
"--debug" )
# Echo commands and pause before executing
if [ $EXECUTE = 0 ]; then
echo "ERROR: --debug flag not valid with --test."
displayhelp
exit
fi
PRINT=1
PAUSE=1
EXECUTE=1
;;
 
 
 
"-h" | "--help" )
displayhelp
exit
;;
"-v" | "--version" )
# Version information is always displayed so just exit here
exit
;;
 
 
-* | --* )
echo "ERROR: Invalid argument '$1'."
echo ""
displayhelp
exit
;;
 
* )
MKVFILE=$1
shift
 
# Ensure there are no arguments after the filename
if [ $# -ne 0 ]; then
echo "ERROR: You cannot supply any arguments after the filename. Please check the command syntax below against what has been parsed."
echo ""
echo "Control Flags:"
echo " Strip DTS: $NODTS"
echo " Keep DTS: $KEEPDTS"
echo " Set AC3 default: $DEFAULT"
echo " External AC3: $EXTERNAL"
echo " DTS track: $DTSTRACK"
echo " MKV file: $MKVFILE"
echo ""
echo "Debugging Flags:"
echo " Print commands: $PRINT"
echo " Pause after print: $PAUSE"
echo " Execute commands: $EXECUTE"
echo ""
displayhelp
exit
fi
;;
esac
 
# Move arguments "up" one spot
shift
done
 
 
 
# File and dependency checks
if [ $EXECUTE = 1 ]; then
# Check the file exists and we have permissions
if [ ! -f "$MKVFILE" ]; then
echo "ERROR: '$MKVFILE' is not a file."
exit
elif [ ! -r "$MKVFILE" ]; then
echo "ERROR: Cannot read '$MKVFILE'."
exit
elif [ -z $EXTERNAL ]; then
if [ ! -w "$MKVFILE" ]; then
# Only check write permission if we're not keeping the AC3 external
echo "ERROR: Cannot write '$MKVFILE'."
exit
fi
fi
 
# Check dependencies (mkvtoolnix, libdca, aften)
if [ -z "$(which mkvmerge)" -o ! -x "$(which mkvmerge)" ]; then
echo "ERROR: The program 'mkvmerge' is not in the path. Is mkvtoolnix installed?"
exit
elif [ -z "$(which mkvextract)" -o ! -x "$(which mkvextract)" ]; then
echo "ERROR: The program 'mkvextract' is not in the path. Is mkvtoolnix installed?"
exit
elif [ -z "$(which mkvinfo)" -o ! -x "$(which mkvinfo)" ]; then
echo "ERROR: The program 'mkvinfo' is not in the path. Is mkvtoolnix installed?"
exit
elif [ -z "$(which dcadec)" -o ! -x "$(which dcadec)" ]; then
echo "ERROR: The program 'dcadec' is not in the path. Is libdca installed?"
exit
elif [ -z "$(which aften)" -o ! -x "$(which aften)" ]; then
echo "ERROR: The program 'aften' is not in the path. Is aften installed?"
exit
fi
fi
 
 
 
# Path to file
DEST=$(dirname "$MKVFILE")
 
# File name without the extension
NAME=$(basename "$MKVFILE" .mkv)
 
# Working Directory
# I personally use the current directory since my temp partition
# is tiny (WD="."). To use the directory the file is in use $DEST.
if [ -z $WD ]; then
WD="/tmp"
fi
 
# Setup temporary files
DTSFILE="$WD/$NAME.dts"
AC3FILE="$WD/$NAME.ac3"
TCFILE="$WD/$NAME.tc"
NEWFILE="$WD/$NAME.new.mkv"
 
if [ $PRINT = 1 ]; then
echo "MKV FILE: $MKVFILE"
echo "DTS FILE: $DTSFILE"
echo "AC3 FILE: $AC3FILE"
echo "TIMECODE: $TCFILE"
echo "NEW FILE: $NEWFILE"
echo "WORKING DIRECTORY: $WD"
fi
 
 
 
# If the track id wasn't specified via command line then search for the first DTS audio track
if [ -z $DTSTRACK ]; then
if [ $PRINT = 1 ]; then
echo ""
echo "Find first DTS track in MKV file."
echo "> mkvmerge -i \"$MKVFILE\" | grep -m 1 \"audio (A_DTS)\" | cut -d ":" -f 1 | cut -d \" \" -f 3"
DTSTRACK="DTSTRACK"
dopause
fi
if [ $EXECUTE = 1 ]; then
DTSTRACK=$(mkvmerge -i "$MKVFILE" | grep -m 1 "audio (A_DTS)" | cut -d ":" -f 1 | cut -d " " -f 3)
 
# Check to make sure there is a DTS track in the MVK
if [ -z $DTSTRACK ]; then
echo "ERROR: There are no DTS tracks in '$MKVFILE'."
exit
fi
fi
else
# Checks to make sure the command line argument track id is valid
if [ $PRINT = 1 ]; then
echo ""
echo "Checking to see if DTS track specified via arguments is valid."
echo "> mkvmerge -i \"$MKVFILE\" | grep \"Track ID $DTSTRACK: audio (A_DTS)\""
dopause
fi
if [ $EXECUTE = 1 ]; then
VALID=$(mkvmerge -i "$MKVFILE" | grep "Track ID $DTSTRACK: audio (A_DTS)")
 
if [ -z "$VALID" ]; then
echo "ERROR: Track ID '$DTSTRACK' is not a DTS track and/or does not exist."
exit
else
echo "INFO: Using alternate DTS track with ID '$DTSTRACK'."
fi
fi
fi
 
 
 
# Get the specified DTS track's information
if [ $PRINT = 1 ]; then
echo ""
echo "Extract track information for selected DTS track."
echo "> mkvinfo \"$MKVFILE\" | grep -A 25 \"Track number: $DTSTRACK\""
INFO="INFO"
dopause
fi
if [ $EXECUTE = 1 ]; then
INFO=$(mkvinfo "$MKVFILE" | grep -A 25 "Track number: $DTSTRACK")
fi
 
#Get the language for the DTS track specified
if [ $PRINT = 1 ]; then
echo ""
echo "Extract language from track info."
echo "> echo \"$INFO\" | grep -m 1 \"Language\" | cut -d \" \" -f 5"
DTSLANG="DTSLANG"
dopause
fi
if [ $EXECUTE = 1 ]; then
DTSLANG=$(echo "$INFO" | grep -m 1 "Language" | cut -d " " -f 5)
fi
 
# Check if a custom name was already specified
if [ -z $DTSNAME ]; then
# Get the name for the DTS track specified
if [ $PRINT = 1 ]; then
echo ""
echo "Extract name for selected DTS track. Change DTS to AC3 and update bitrate if present."
echo "> echo \"$INFO\" | grep -m 1 \"Name\" | cut -d \" \" -f 5- | sed \"s/DTS/AC3/\" | sed -r \"s/[0-9]+(\.[0-9]+)?(M|K)bps/448Kbps/\""
DTSNAME="DTSNAME"
dopause
fi
if [ $EXECUTE = 1 ]; then
DTSNAME=$(echo "$INFO" | grep -m 1 "Name" | cut -d " " -f 5- | sed "s/DTS/AC3/" | sed -r "s/[0-9]+(\.[0-9]+)?(M|K)bps/448Kbps/")
fi
fi
 
# Extract timecode information for the target track
if [ $PRINT = 1 ]; then
echo ""
echo "Extract timecode information for the audio track."
echo "> mkvextract timecodes_v2 \"$MKVFILE\" $DTSTRACK:\"$TCFILE\""
echo "> sed -n \"2p\" \"$TCFILE\""
echo "> rm -f \"$TCFILE\""
DELAY="DELAY"
dopause
fi
if [ $EXECUTE = 1 ]; then
nice -n $PRIORITY mkvextract timecodes_v2 "$MKVFILE" $DTSTRACK:"$TCFILE"
DELAY=$(sed -n "2p" "$TCFILE")
rm -f "$TCFILE"
fi
 
 
 
# Extract the DTS track
if [ $PRINT = 1 ]; then
echo ""
echo "Extract DTS file from MKV."
echo "> mkvextract tracks \"$MKVFILE\" $DTSTRACK:\"$DTSFILE\""
dopause
fi
if [ $EXECUTE = 1 ]; then
nice -n $PRIORITY mkvextract tracks "$MKVFILE" $DTSTRACK:"$DTSFILE"
 
# Check to make sure the extraction completed successfully
if [ $? -ne 0 ]; then
echo "ERROR: Extracting the DTS track failed."
exit
fi
fi
 
# Convert DTS to AC3
if [ $PRINT = 1 ]; then
echo ""
echo "Converting DTS to AC3."
echo "> dcadec -o wavall \"$DTSFILE\" | aften - \"$AC3FILE\""
dopause
fi
if [ $EXECUTE = 1 ]; then
if [ -z $AUDIOMODE ]; then
AUDIOMODE="wavall"
fi
nice -n $PRIORITY dcadec -o $AUDIOMODE "$DTSFILE" | nice -n $PRIORITY aften - "$AC3FILE"
 
# Check to make sure the conversion completed successfully
if [ $? -ne 0 ]; then
echo "ERROR: Converting the DTS to AC3 failed."
 
rm -f "$DTSFILE" #clean up
rm -f "$AC3FILE" #clean up
exit
fi
fi
 
# Remove DTS file unless explicitly keeping DTS track
if [ -z $KEEPDTS ]; then
if [ $PRINT = 1 ]; then
echo ""
echo "Removing temporary DTS file."
echo "> rm -f \"$DTSFILE\""
dopause
fi
if [ $EXECUTE = 1 ]; then
rm -f "$DTSFILE"
 
if [ $? -ne 0 ]; then
echo "WARNING: Could not delete temporary file '$DTSFILE'. Please do this manually after the script has completed."
fi
fi
fi
 
 
 
# Check there is enough free space for AC3+MKV
if [ $EXECUTE = 1 ]; then
MKVFILESIZE=$(\du "$MKVFILE" | awk '{print $1}')
AC3FILESIZE=$(\du "$AC3FILE" | awk '{print $1}')
WDFREESPACE=$(\df "$WD" | tail -1 | awk '{print $4}')
if [ $(($MKVFILESIZE + $AC3FILESIZE)) -gt $WDFREESPACE ]; then
echo "ERROR: There is not enough free space on '$WD' to create the new file."
 
rm -f "$AC3FILE" #clean up
exit
fi
fi
 
if [ $EXTERNAL ]; then
# We need to trick the rest of the script so that there isn't a lot of
# code duplication. Basically $NEWFILE will be the AC3 track and we'll
# change $MKVFILE to where we want the AC3 track to be so we don't
# overwrite the MKV file only an AC3 track
NEWFILE=$AC3FILE
MKVFILE="$DEST/$NAME.ac3"
else
# Start to "build" command
CMD="nice -n $PRIORITY mkvmerge -o \"$NEWFILE\""
 
# If user doesn't want the original DTS track drop it
if [ $NODTS ]; then
# Count the number of audio tracks in the file
AUDIOTRACKS=$(mkvmerge -i "$MKVFILE" | grep "audio (A_" | wc -l) #)#<-PN2 highlighting fix
 
if [ $AUDIOTRACKS -eq 1 ]; then
# If there is only the DTS audio track then drop all audio tracks
CMD="$CMD -A"
else
# Get a list of all the other audio tracks
SAVETRACKS=$(mkvmerge -i "$MKVFILE" | grep "audio (A_" | cut -d ":" -f 1 | grep -vx "Track ID $DTSTRACK" | cut -d " " -f 3 | awk '{ if (T == "") T=$1; else T=T","$1 } END { print T }')
# And copy only those
CMD="$CMD -a \"$SAVETRACKS\""
fi
fi
 
# Add original MKV file to command
CMD="$CMD \"$MKVFILE\""
 
# If user wants new AC3 as default then add appropriate arguments to command
if [ $DEFAULT ]; then
CMD="$CMD --default-track 0"
fi
 
# If the language was set for the original DTS track set it for the AC3
if [ $DTSLANG ]; then
CMD="$CMD --language 0:$DTSLANG"
fi
 
# If the name was set for the original DTS track set it for the AC3
if [ "$DTSNAME" ]; then
CMD="$CMD --track-name 0:\"$DTSNAME\""
fi
 
# If there was a delay on the original DTS set the delay for the new AC3
if [ $DELAY != 0 ]; then
CMD="$CMD --sync 0:$DELAY"
fi
 
# Append new AC3
CMD="$CMD \"$AC3FILE\""
 
# Run it!
if [ $PRINT = 1 ]; then
echo ""
echo "Running main remux."
echo "> $CMD"
dopause
fi
if [ $EXECUTE = 1 ]; then
eval $CMD
 
if [ $? -ne 0 ]; then
echo "ERROR: Merging the AC3 track back into the MKV failed."
 
rm -f "$AC3FILE" #clean up
rm -f "$NEWFILE" #clean up
exit
fi
fi
 
# Delete AC3 file
if [ $PRINT = 1 ]; then
echo ""
echo "Removing temporary AC3 file."
echo "> rm -f \"$AC3FILE\""
dopause
fi
if [ $EXECUTE = 1 ]; then
rm -f "$AC3FILE"
 
if [ $? -ne 0 -a $EXECUTE = 0 ]; then
echo "WARNING: Could not delete temporary file '$AC3FILE'. Please do this manually after the script has completed."
fi
fi
fi
 
 
 
# Check to see if the two files are on the same device
NEWFILEDEVICE=$(\df "$WD" | tail -1 | cut -d " " -f 1)
DSTFILEDEVICE=$(\df "$DEST" | tail -1 | cut -d " " -f 1)
 
if [ $EXECUTE = 1 ]; then
echo "Copying new file over old file. DO NOT POWER OFF OR KILL THIS PROCESS OR YOU WILL EXPERIENCE DATA LOSS!"
fi
 
if [ "$NEWFILEDEVICE" = "$DSTFILEDEVICE" ]; then
# If we're working on the same device just move the file over the old one
if [ $PRINT = 1 ]; then
echo ""
echo "Moving old file over new one."
echo "> mv \"$NEWFILE\" \"$MKVFILE\""
dopause
fi
if [ $EXECUTE = 1 ]; then
mv "$NEWFILE" "$MKVFILE"
 
#TODO: add move exit code check
fi
else
# Check there is enough free space for the new file
if [ $EXECUTE = 1 ]; then
MKVFILEDIFF=$(($(\du "$NEWFILE" | awk '{print $1}') - $MKVFILESIZE))
DESTFREESPACE=$(\df -P "$DEST" | tail -1 | awk '{print $4}')
 
if [ $MKVFILEDIFF -gt $DESTFREESPACE ]; then
echo "ERROR: There is not enough free space to copy the new MKV over the old one. Free up some space and then copy '$NEWFILE' over '$MKVFILE'."
exit
fi
fi
 
# Copy our new MKV with the AC3 over the old one OR if we're using the -e
# switch then this actually copies the AC3 file to the original directory
if [ $PRINT = 1 ]; then
echo ""
echo "Copying new file over the old one."
echo "> cp \"$NEWFILE\" \"$MKVFILE\""
dopause
fi
if [ $EXECUTE = 1 ]; then
cp "$NEWFILE" "$MKVFILE"
 
# Check file sizes are equal to ensure the full file was copied
OLDFILESIZE=$(\du "$NEWFILE" | awk '{print $1}')
NEWFILESIZE=$(\du "$MKVFILE" | awk '{print $1}')
 
if [ $? -ne 0 -o $OLDFILESIZE -ne $NEWFILESIZE ]; then
echo "ERROR: There was an error copying the new MKV over the old one. You can perform this manually by copying '$NEWFILE' over '$MKVFILE'."
exit
fi
fi
 
# Remove new file in $WD
if [ $PRINT = 1 ]; then
echo ""
echo "Remove working file."
echo "> rm -f \"$NEWFILE\""
dopause
fi
if [ $EXECUTE = 1 ]; then
rm -f "$NEWFILE"
 
if [ $? -ne 0 -a $EXECUTE = 0 ]; then
echo "WARNING: Could not delete temporary file '$NEWFILE'. Please do this manually after the script has completed."
fi
fi
fi
 
 
 
# Display total execution time
END=$(date +%s)
if [ $EXECUTE = 1 -a $PAUSE = 0 ]; then
echo "Total processing time: $(($END - $START)) seconds."
fi