-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulticutmkv.sh
executable file
·1385 lines (1287 loc) · 43.4 KB
/
multicutmkv.sh
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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
#################################################
# Script zum Schneiden von OTR-Aufnahmen auf Basis von multicut von
# (c) 2006,2007,2008 Hagen Meyer -- hagen@hcmeyer.de
#
# VERSION 130920-r1
# Erweiterungen von Christof Schulze, Lizenz: GPLv2
# VERSION 140624
# Erweiterungen von Jonny007-MKD, Lizenz: GPLv2
#
# https://github.com/Jonny007-MKD/multicutmkv
#################################################
# Exit Codes
# 1 General error or interrupt
# 2 Missing arguments
# 3 Tmp folder not found
# 4 Specified file does not exist
# 10 No cutlist found
# 11 Downloading cutlist failed
# 12 Unknown custlist format
# 20 ffmsindex failed (could not create keyframe list)
# 21 mkvmerge failed
# 22 x264 failed
# 23 avconv failed
# 6
# 7
# 126 Additional software needed
#######################
# TODO
#######################
# * Bei Gelegenheit mal die FIXME's durchgehen
#######################
# CONFIG
#######################
# set -ix
tempdir="/tmp/multicut"
#tempdir="/mnt/cleartemp/multicut"
# lokale cutlists (aktueller ordner) verwenden? name ist egal, wird nach inhalt ausgewaehlt
# KEIN vorrang vor heruntergeladenen cutlists bei aktiviertem download und automatischem modus
# 0: nein, 1: ja
local=1
# cutlists downloaden?
# versucht alle verfuegbaren cutlists auf cutlist.de zu finden
# 0: nein, 1: ja
download=1
# automatischer modus
# versucht, selbst die beste cutlist zu finden (lokal und internet, je nach einstellung), und verwendet diese.
# im interaktiven modus (automode=0) werden cutlists auch nach qualitaet sortiert, aber die auswahl erfolgt manuell
automode=1
# Mindest-bewertung (vom Autor) fuer cutlists (schlechter wird ignoriert).
#
# Werte:
# 5: framegenau und keine doppelten Szenen
# 4: framegenau
# 3: +/- 1 sek
# < 3: schlechter (wen interessierts? ;) )
#
# Empfehlung: 3-4. Wer will schon ungenaue schnitte??
# (wer mit avisplit schneidet kann auch schlechtere cutlists verwenden, das avisplit eh nur an keyframes schneidet)
min_rating=3
# sollen die schnitte anschliessend mit mplayer ueberprueft werden?
# check=1 oder 0
# mplayer wird nacheinander ca. 10 sekunden vor dem schnitt gestartet. fuer den naechsten schnitt mplayer einfach beenden (mit q)
# anfang und ende werden auch gezeigt
check=0
# Ausgabe-Ausführlichkeit
# 0: nichts, 1: Fehler, 2: Warnungen, 3: Info
echoLevel=3
# Farben - auskommentieren wenn man keine farben moechte
c_filename="\033[00;34m"
c_author="\033[01;37;40m"
c_rating="\033[01;33;41m"
c_cuts="\033[01;33;41m"
c_selection="\033[01;37;40m"
c_error="\033[01;31;40m"
c_info="\033[01;30;42m"
c_end="\033[00;00m"
function cleanup()
{
if [ $# -eq 0 ]; then
exit 1
fi
case $1 in
0) ;& # if successful
4) ;& # or input file not found
10) # or cutlist not found
rm -rf $tempdir
;&
*)
exit $1
;;
esac
}
onlyFindCutlist=false
trap 'cleanup' 1 2 3 6 9 13 14 15
# x264 Parameter um HD, HQ und mp4 zu kodieren, wenn smartmkvmerge genutzt
# wird
x264_hd_string="--tune film --direct auto --force-cfr --rc-lookahead 60 --b-adapt 2 --weightp 0"
x264_hq_string="--tune film --direct auto --force-cfr --rc-lookahead 60 --b-adapt 2 --aq-mode 2 --weightp 0"
x264_mp4_string="--force-cfr --profile baseline --preset medium --trellis 0"
X264=x264
X264_X_ARGS=
AVCONV=avconv
AVCONV_X_ARGS=
MKVMERGE=mkvmerge
MKVMERGE_X_ARGS=
FFMSINDEX=ffmsindex
FFMSINDEX_X_ARGS=-v
MEDIAINFO=mediainfo
MEDIAINFO_X_ARGS=
# name der avidemux binary. wenn sie nicht automatisch gefunden wird, bitte hier aendern...
if type avidemux3_cli >/dev/null 2>&1 ; then
avidemux="avidemux3_cli"
elif type avidemux2_cli >/dev/null 2>&1 ; then
avidemux="avidemux2_cli"
elif type avidemux2 >/dev/null 2>&1; then
avidemux="avidemux2"
else
avidemux="avidemux"
fi
#######################
# FUNCTIONS
#######################
x264_opts=""
function log {
if [ $1 -le $echoLevel ]; then # if we shall echo this message
if [ $1 -eq 1 ]; then
echo -e "${c_error}$2${c_end}" >&2 # redirect error to stderr
else
echo -e "$2${c_end}"
fi
fi
}
function check_dependencies1()
{
local pist=0;
if ! type gawk >/dev/null 2>&1 ; then
log 1 "Please install gawk!"
pist=1;
fi
if ! type bc >/dev/null 2>&1 ; then
log 1 "Please install bc!"
pist=1;
fi
if ! type $MEDIAINFO >/dev/null 2>&1 ; then
log 1 "Please install mediainfo!"
pist=1;
fi
if [ $pist -ne 0 ]; then
cleanup 126;
fi
}
function check_dependencies2()
{
local pist=0
if [ $cutwith == "avidemux" ]; then
if ! type $avidemux > /dev/null 2>&1 ; then
log 1 "Please install avidemux!"
pist=1;
fi
if ! type $MKVMERGE > /dev/null 2>&1 ; then
log 1 "Please install mkvtoolnix"
pist=1
fi
elif [ $cutwith == "avisplit" ]; then
if ! type avisplit > /dev/null 2>&1 ; then
log 1 "Please install 'transcode'!"
pist=1
fi
elif [ $cutwith == "smartmkvmerge" ]; then
if ! type $MKVMERGE > /dev/null 2>&1 ; then
log 1 "Please install mkvtoolnix"
pist=1
fi
if ! type $FFMSINDEX > /dev/null 2>&1 ; then
log 1 "Please install ffmsindex (version >= 2.18)"
pist=1
fi
if ! type $X264 > /dev/null 2>&1 ; then
log 1 "Please install x264"
pist=1
fi
if ! type avxFrameServer > /dev/null 2>&1 ; then
log 1 "Please make and install avxsynth"
pist=1
fi
elif [ $cutwith == "smartmkvmergeavconv" ]; then
if ! type $AVCONV > /dev/null 2>&1 ; then
log 1 "Please install libav-tools"
pist=1
fi
if ! type $MKVMERGE > /dev/null 2>&1 ; then
log 1 "Please install mkvtoolnix"
pist=1
fi
fi
if [ $pist -ne 0 ]; then
cleanup 126;
fi
}
function getFtype()
{ # filename
# setzt einige Variablen in Abhängigkeit vom Dateityp: cutwith und
# x264_opts
##############################################################################################
local filename
filename=$1
x264_opts=""
bt709="--videoformat pal --colorprim bt709 --transfer bt709 --colormatrix bt709"
bt470bg="--videoformat pal --colorprim bt470bg --transfer bt470bg --colormatrix bt470bg"
avconvopts="-q:v 1 -g 300"
if [ ! -f "$tempdir/$(basename $film).mediainfo" ]; then
$MEDIAINFO $MEDIAINFO_X_ARGS "$filename" > "$tempdir/$(basename $film).mediainfo"
fi
while read line
do
case $line in
"Color primaries"*)
[[ $line == *"BT.709"* ]] && x264_opts="$x264_opts $bt709"
[[ $line == *"BT.470"* ]] && x264_opts="$x264_opts $bt470bg" ;;
"Format "*)
case "${line:43}" in
"MPEG-4"*) avconvopts="$avconvopts -vcodec mpeg4 -vtag DX50";;
"AVC"*) avconvopts="$avconvopts -vcodec h264";;
esac;;
"Format profile"*"@L"*)
lvl=$(echo ${line#*@L}|cut -d"." -f1); profile=$(echo ${line%@L*}|cut -d":" -f2)
x264_opts="$x264_opts --level $lvl --profile $profile";;
"Frame rate mode"*)
;;
"Frame rate"*)
fps="$(echo $line |cut -d":" -f2|cut -d" " -f2)"
if [ -z "$fps" -o "$fps" == "0" ]; then
log 1 "Frame rate cannot be zero!"
cleanup 1
fi
x264_opts="$x264_opts --fps $fps";;
"Encoding settings"*)
for opt in $line
do
val=${opt#*=}
case $opt in
"cabac=0") x264_opts="$x264_opts --no-cabac";;
"ref="*) x264_opts="$x264_opts --ref $val";;
"deblock=0"*) x264_opts="$x264_opts --no-deblock";;
"deblock="*) x264_opts="$x264_opts --deblock ${val:2}";;
"me="*) x264_opts="$x264_opts --me $val";;
"subme="*) x264_opts="$x264_opts --subme $val";;
"psy=0") x264_opts="$x264_opts --no-psy";;
"psy_rd="*) x264_opts="$x264_opts --psy-rd $val";;
"mixed-ref=0") x264_opts="$x264_opts --no-mixed-refs";;
"me_range="*) x264_opts="$x264_opts --merange $val";;
"chroma_me=0") x264_opts="$x264_opts --no-chroma-me";;
"trellis="*) x264_opts="$x264_opts --trellis $val" ;;
"8x8dct=0") x264_opts="$x264_opts --no-8x8dct";;
"deadzone="*) x264_opts="$x264_opts --deadzone-inter ${val%,*} --deadzone-intra ${val#*,}";;
"fast_pskip=0") x264_opts="$x264_opts --no-fast-pskip";;
"chroma_qp_offset="*) x264_opts="$x264_opts --chroma-qp-offset $val";;
"decimate=0") x264_opts="$x264_opts --no-dct-decimate";;
"constrained_intra=1") x264_opts="$x264_opts --constrained-intra";;
"bframes="*) x264_opts="$x264_opts --bframes $val";;
"b_pyramid="*) x264_opts="$x264_opts --b-pyramid $val";;
"b_adapt="*) x264_opts="$x264_opts --b-adapt $val";;
"b_bias="*) x264_opts="$x264_opts --b-bias $val";;
"direct=0") x264_opts="$x264_opts --direct none";;
"direct=1") x264_opts="$x264_opts --direct spatial";;
"direct=2") x264_opts="$x264_opts --direct temporal";;
"direct=3") x264_opts="$x264_opts --direct auto";;
"weightb=0") x264_opts="$x264_opts --no-weightb";;
"open_gop=1") x264_opts="$x264_opts --open-gop";;
"weightp="*) x264_opts="$x264_opts --weightp $val";;
"keyint="*) x264_opts="$x264_opts --keyint $val";;
"keyint_min="*) x264_opts="$x264_opts --min-keyint $val";;
"scenecut="*) x264_opts="$x264_opts --scenecut $val";;
"intra_refresh=1") x264_opts="$x264_opts --intra-refresh";;
"rc-lookahead="*) x264_opts="$x264_opts --rc-lookahead $val";;
"mbtree=0") x264_opts="$x264_opts --no-mbtree";;
"crf="*) x264_opts="$x264_opts --crf $val";;
"qcomp="*) x264_opts="$x264_opts --qcomp $val";;
"qpmin="*) x264_opts="$x264_opts --qpmin $val";;
"qpmax="*) x264_opts="$x264_opts --qpmax $val";;
"qpstep="*) x264_opts="$x264_opts --qpstep $val";;
"ip_ratio="*) x264_opts="$x264_opts --ipratio $val";;
"aq="*) x264_opts="$x264_opts --aq-mode ${val%:*} --aq-strength ${val#*:}";;
*) ;;
esac
done;;
*) ;;
esac
done < "$tempdir/$(basename $film).mediainfo"
shopt -s compat31
# x264 arbeitet nur über ffms genau genug nutze den ffms-demuxer oder leb mit ungenauen Schnitten.
x264_opts="$x264_opts --demuxer ffms"
if [[ ${filename} =~ ".*HQ.avi*" ]]
then
x264_opts="$x264_opts $x264_hq_string"
cutwith=smartmkvmerge
elif [[ ${filename} =~ ".*HD.avi*" ]]; then
x264_opts="$x264_opts $x264_hd_string"
cutwith=smartmkvmerge
elif [[ ${filename} =~ ".*mp4" ]]; then
x264_opts="$x264_opts $x264_mp4_string"
cutwith=smartmkvmerge
else
x264_opts=""
cutwith=smartmkvmergeavconv
fi
check_dependencies2
}
# Sucht alle cutlists fuer diese gdatei, die beste wird spaeter gesucht...
##############################################################################################
function dlCutlists ()
{ # filename # diff filesize
cd "$workdir"
filename="${1}"
log 3 "${c_info}Suche cutlists fuer ${filename##*/}..."
if [[ $(uname) != "Linux" ]]; then
search=$(stat -f %z "$filename")
DATE=gdate
else
search=$(stat -c %s "$filename")
DATE=date
fi
if (( $# >= 2 )); then # Difference to filesize given
search=$((search-$2))
fi
cd ${tempdir}
rm *.xml 2>/dev/null # alte xmls loeschen, da sonst keine sichere zuordnung cutlist<->film durgefuehrt werden kann
# xml herunterladen, und in einzelne abschnitte aufteilen
# wget -q -O - "http://cutlist.de/getxml.php?version=0.9.8.0&ofsb=$search" | gawk -F ">" '/<id>/{split($2,tmp,"<");id=tmp[1]}/\/cutlist/{id=0}{if (id>0) {gsub("\t","");print > id ".de.xml" }}'
wget -q -O - "http://cutlist.at/getxml.php?ofsb=$search" | gawk -F ">" '/<id>/{split($2,tmp,"<");id=tmp[1]}/\/cutlist/{id=0}{if (id>0) {gsub("\t","");print > id ".at.xml" }}'
}
function dlCutlist ()
{ # array-index
cd $tempdir
idx=$1
wget -q -O "${cutlist[$idx]}" "${url[$idx]}"
# "FIELD": Cutlist-Format
if [ ! -f "${cutlist[$idx]}" ]; then
log 1 "Dowloading cutlist failed!"
cleanup 11
fi
if grep -q "StartFrame=" "${cutlist[$idx]}" ; then
vcf2format[$idx]=1
elif grep -q "Start=" "${cutlist[$idx]}" ; then
vcf2format[$idx]=0
else
log 1 "unbekanntes Cutlist-Format: ${cutlist[$idx]}"
cleanup 12
fi
}
# sucht die beste cutlist fuer eine gdatei aus dem ordner $tempdir
#############################################################
function findBestCutlist ()
{ # filename
log 3 "Filtere Cutlists nach gegebenen Kriterien..."
cd $tempdir
unset cutlist
# log 4 $(ls)
filename="${1##*/}"
filename="${filename%TVOON*}"
i=1
# Lade die wichtigen daten der passenden cutlists in arrays (cutlist, rating, cuts)
# beruecksichtigt vorerst nur LOKALE cutlists, online kommt spaeter
for cl in $(find . -type f ! -size +1M -exec grep -qi ApplyToFile=$filename {} \; -print)
do
unset url[$i]
# FIELD: RatingByAuthor
tmp=$(grep RatingByAuthor $cl)
tmp=${tmp%[[:cntrl:]]} # letztes zeichen loeschen (\r)
rating[$i]=${tmp#RatingByAuthor=}
[ ${rating[$i]} -lt $min_rating ] && continue # naechste cutlist, wenn rating zu gering
# "FIELD": Cutlist-Format
if grep -q "StartFrame=" $cl ; then
vcf2format[$i]=1
elif grep -q "Start=" $cl ; then
vcf2format[$i]=0
else
log 1 "Unbekanntes Cutlist-Format: ${cl##*/}"
continue # cutlist ignorieren, unbekanntes format...
fi
# FIELD: Author
tmp=`grep "^Author" $cl`
tmp=${tmp%[[:cntrl:]]}
author[$i]=${tmp#Author=}
author[$i]=${author[$i]:-Unbekannt}
# FIELD: NoOfCuts
tmp=`grep NoOfCuts $cl`
tmp=${tmp%[[:cntrl:]]} # letztes zeichen loeschen (\r)
cuts[$i]=${tmp#NoOfCuts=}
# FIELD: Comment
tmp=`grep UserComment $cl`
tmp=${tmp%[[:cntrl:]]} # letztes zeichen loeschen (\r)
comment[$i]=${tmp#UserComment=}
# verschiedene fehler...
unset error[$i] content[$i] errordesc[$i]
if grep -q "EPGError=1" $cl ; then
tmp=`grep ActualContent $cl`
tmp=${tmp%[[:cntrl:]]} # letztes zeichen loeschen (\r)
content[$i]="Tatsaechlicher Inhalt: ${tmp#ActualContent=}"
error[$i]=" EPG-Fehler! "
fi
if grep -q "MissingBeginning=1" $cl ; then
error[$i]="${error[$i]} Anfang fehlt! "
fi
if grep -q "MissingEnding=1" $cl ; then
error[$i]="${error[$i]} Ende fehlt! "
fi
if grep -q "MissingAudio=1" $cl ; then
error[$i]="${error[$i]} Ton fehlt! "
fi
if grep -q "MissingVideo=1" $cl ; then
error[$i]="${error[$i]} Bild fehlt! "
fi
if grep -q "OtherError=1" $cl ; then
tmp=`grep OtherErrorDescription $cl`
tmp=${tmp%[[:cntrl:]]} # letztes zeichen loeschen (\r)
errordesc[$i]="Fehlerbeschreibung: ${tmp#OtherErrorDescription=}"
error[$i]="${error[$i]} Sonstiger Fehler! "
fi
# Nicht vergessen: dateiname
cutlist[$i]=${cl##*/}
# userrating
if [ -f "${cutlist[$i]}.rating" ] ; then
userrating[$i]=$( cat "${cutlist[$i]}.rating" )
else
unset userrating[$i]
fi
# erst hier increment, vorher kann das speichern dieser cutlist abgebrochen werden
let i++
done
# nun zu den ONLINE cutlists...
shopt -s nullglob
for cl in *.xml
do
unset error[$i] content[$i] errordesc[$i] vcf2format[$i]
# FIELD: RatingByAuthor
tmp=`grep "<ratingbyauthor>" $cl`
tmp=${tmp%<*}
rating[$i]=${tmp#*>}
[ ${rating[$i]} -lt $min_rating ] && continue # naechste cutlist, wenn rating zu gering
# FIELD: Author
tmp=`grep "<author>" $cl`
tmp=${tmp%<*}
author[$i]=${tmp#*>}
author[$i]=${author[$i]:-Unbekannt}
# FIELD: Cuts
cuts[$i]=`grep "<cuts>" $cl | egrep -o "[0-9]+"`
# FIELD: Comment
tmp=`grep "<usercomment>" $cl`
tmp=${tmp%<*}
comment[$i]=${tmp#*>}
# EPG-Fehler!
tmp=`grep "<actualcontent>" $cl`
tmp=${tmp%<*}
tmp=${tmp#*>}
if [ -n "$tmp" ]; then
content[$i]="Tatsaechlicher Inhalt: ${tmp#ActualContent=}"
error[$i]=" EPG-Fehler! "
fi
# FIELD: userrating
tmp=`grep "<rating>" $cl`
tmp=${tmp%<*}
tmp=${tmp#*>}
if [ -n "$tmp" ]; then
userrating[$i]=$tmp
tmp=`grep "<ratingcount>" $cl`
tmp=${tmp%<*}
userrating[$i]="${userrating[$i]}|${tmp#*>}"
else
unset userrating[$i]
fi
# gdateiname
tmp=`grep "<name>" $cl`
tmp=${tmp%<*}
cutlist[$i]=${tmp#*>}
# url
cl=${cl##*/}
cl=${cl%.*}
url[$i]="http://cutlist.${cl#*.}/getfile.php?id=${cl%.*}"
let i++
done
if [ ${#cutlist[@]} -eq 0 ] ; then
log 2 "${c_error}Keine passende Cutlist fuer $c_filename$filename$c_error gefunden. Abbruch."
return 0
fi
sortCutlists # gesammelte cutlists nach "qualitaet" sortieren
(( $automode > 0 )) && return 1 # interaktive auswahl nicht noetig, ersten eintrag der arrays verwenden
# interaktive auswahl...
clear
log 3 "\n$c_info Für die Datei $c_filename$filename$c_end wurden folgende cutlists gefunden:$c_end\n\n"
i=2
# while [ $i -le ${#cutlist[@]} ] ; do
for ((i=0;i<=${#cutlist[@]};i++))
do
if [ -z "${vcf2format[$i]}" ] ; then
format_string="Unbekannt"
else
format_string=$( [ ${vcf2format[$i]} -eq 1 ] && echo "VCF2Cutlist-Standard" || echo "Assistant-Standard" )
fi
printf "$c_selection[%d]$c_end\t%s von $c_author %s $c_end\n\tAutor-Wertung: $c_rating %d $c_end\t\tUser-Wertung: $c_rating %s $c_end (%d Stimmen)\n\tFormat: %s\tAnzahl Schnitte: $c_cuts %d $c_end\n\tKommentar: %s\n" $((i+1)) "${cutlist[$i]}" "${author[$i]}" "${rating[$i]}" "${userrating[$i]%|*}" "${userrating[$i]#*|}" "$format_string" "${cuts[$i]}" "${comment[$i]}"
if [ -n "${error[$i]}" ] ; then
log 1 "\t${error[$i]}"
fi
if [ -n "${content[$i]}" ] ; then
log 3 "\t${content[$i]}"
fi
if [ -n "${errordesc[$i]}" ] ; then
log 3 "\t${errordesc[$i]}"
fi
if [ -n "${url[$i]}" ] ; then
log 3 "\t$c_info Online - ${url[$i]%/*}"
fi
echo
# let i++
done
log 3 "$c_selection[0]$c_end\tKeine Auswahl. Diesen Film nicht schneiden.\n\n\n"
read -p "Auswahl: " ret
# FIXME hier koennte noch ein plausi-check erfolgen...
return $ret
}
# sortiere cutlists nach "qualitaet" (absteigend): RatingByAuthor->User-Rating->VCF2Format?->NoOfCuts->ActualContent
##########################################################################################
# Erklaerung:
# RatingByAuthor gibt die beste Auskunft der Schnittqualitaet
# VCF2Format schneidet nach Frames, nicht nach zeit ==> duerfte meistens besser sein
# Mehr Cuts duerfte meistens besser sein, (ueberschuessiges Ende weg, keine Werbung uebersehen, etc.)
# ActualContent: wenn leer, dann besser (meistens gesetzt, wenn es nicht um den eigentlich aufgenommenen film geht,
# sondern um das ende des vorhergehenden o.ae.
# !! vollautomatisch kann NIE die absolut beste cutlist gefunden werden, es ist nur der versuch eine moeglichst gute zu finden...
##########################################################################################
function sortCutlists ()
{ # greift auf die arrays zu, die in "findBestCutlist" erstellt werden
local changed=1
while [ $changed -eq 1 ] ; do
changed=0
i=2
while [ $i -le ${#cutlist[@]} ] ; do
if [ ${rating[$i-1]} -lt ${rating[$i]} ] ; then
swap $i
changed=1
elif [ ${rating[$i-1]} -eq ${rating[$i]} ] && [ "${userrating[$i-1]%|*}" \< "${userrating[$i]%|*}" ] ; then
swap $i
changed=1
elif [ ${rating[$i-1]} -eq ${rating[$i]} ] && [ "${userrating[$i-1]%|*}" = "${userrating[$i]%|*}" ] && [ ${vcf2format[$i-1]:-0} -lt ${vcf2format[$i]:-0} ] ; then
swap $i
changed=1
elif [ ${rating[$i-1]} -eq ${rating[$i]} ] && [ "${userrating[$i-1]%|*}" = "${userrating[$i]%|*}" ] && [ ${vcf2format[$i-1]:-0} -eq ${vcf2format[$i]:-0} ] && [ ${cuts[$i-1]} -lt ${cuts[$i]} ] ; then
swap $i
changed=1
elif [ ${rating[$i-1]} -eq ${rating[$i]} ] && [ "${userrating[$i-1]%|*}" = "${userrating[$i]%|*}" ] && [ ${vcf2format[$i-1]:-0} -eq ${vcf2format[$i]:-0} ] && [ ${cuts[$i-1]} -eq ${cuts[$i]} ] && [ -z "${content[$i]}" ] && [ -n "${content[$i-1]}" ]; then
swap $i
changed=1
fi
let i++
done
done
}
function swap ()
{ # parameter: i: elemente i-1 und i werden (von allen arrays) vertauscht
local tmp="${cutlist[$1-1]}"
cutlist[$1-1]="${cutlist[$1]}"
cutlist[$1]="$tmp"
tmp="${rating[$1-1]}"
rating[$1-1]="${rating[$1]}"
rating[$1]="$tmp"
tmp="${userrating[$1-1]}"
userrating[$1-1]="${userrating[$1]}"
userrating[$1]="$tmp"
tmp="${vcf2format[$i-1]}"
vcf2format[$i-1]="${vcf2format[$i]}"
vcf2format[$i]="$tmp"
tmp="${cuts[$1-1]}"
cuts[$1-1]="${cuts[$1]}"
cuts[$1]="$tmp"
tmp="${comment[$1-1]}"
comment[$1-1]="${comment[$1]}"
comment[$1]="$tmp"
tmp="${content[$1-1]}"
content[$1-1]="${content[$1]}"
content[$1]="$tmp"
tmp="${author[$1-1]}"
author[$1-1]="${author[$1]}"
author[$1]="$tmp"
tmp="${error[$1-1]}"
error[$1-1]="${error[$1]}"
error[$1]="$tmp"
tmp="${errordesc[$1-1]}"
errordesc[$1-1]="${errordesc[$1]}"
errordesc[$1]="$tmp"
tmp="${url[$1-1]}"
url[$1-1]="${url[$1]}"
url[$1]="$tmp"
}
function findclosesttime()
{
# this will show the time matching a frame that is closest to the time that
# is passed as parameter
local film
local millis
local kflist
millis="$1"
film="$2"
kflist="${film##*/}.ffindex_track00.tc.txt"
if [ ! -f "${kflist}" ]
then
$FFMSINDEX $FFMSINDEX_X_ARGS -k -p -c -f "$film" "${film##*/}.ffindex"
if [ ! -f "${kflist}" ]; then
log 1 "ffmsindex failed"
cleanup 20
fi
fi
echo $millis >> millis
danach=$(cat millis $kflist|grep -v "#"| sort -n | grep -A 1 $millis |tail -n1)
davor=$(cat millis $kflist|grep -v "#"| sort -n | grep -B 1 $millis |head -n1)
if [[ $(echo "$danach - $millis"|bc -l|sed 's/\.//') -gt $(echo "$millis - $davor"|bc -l |sed 's/\.//') ]]; then
echo $danach
else
echo $davor
fi
}
function findkeyframeafterframe()
{
# this will show the keyframe that is after the current frame
local film
local frame
frame="$1"
film="$2"
local kflist
kflist="${film##*/}.ffindex_track00.kf.txt"
if [ ! -f "${kflist}" ]
then
$FFMSINDEX $FFMSINDEX_X_ARGS -k -p -c -f "$film" "${film##*/}.ffindex"
if [ ! -f "${kflist}" ]; then
log 1 "ffmsindex failed"
cleanup 20
fi
fi
echo $frame > frame
keyframe=$(cat frame $kflist|grep -v "#"| sort -n | grep -A 1 "^${frame}$" |tail -n1)
case $keyframe in
*#*) keyframe=0;;
esac
echo $keyframe
}
function iskeyframe()
{
# this will return 0 if the current frame is a keyframe
local film
local frame
local kflist
frame="$1"
film="$2"
kflist="${film##*/}.ffindex_track00.kf.txt"
if [ ! -f "${kflist}" ]
then
$FFMSINDEX $FFMSINDEX_X_ARGS -k -p -c -f "$film" "${film##*/}.ffindex"
if [ ! -f "${kflist}" ]; then
log 1 "ffmsindex failed"
cleanup 20
fi
fi
grep -q "^${frame}$" $kflist
return $?
}
function convertframestostime ()
{
local film
local frame
local timev
local list
frame="$2"
film="$1"
list="${film##*/}.ffindex_track00.tc.txt"
if [ ! -f "${list}" ]
then
$FFMSINDEX $FFMSINDEX_X_ARGS -k -p -c -f "$film" "${film##*/}.ffindex"
if [ ! -f "${kflist}" ]; then
log 1 "ffmsindex failed"
cleanup 20
fi
fi
local tmp
timev=$(awk "NR==$((frame+2)) {print;exit}" $list)
timev=$(printf "%.0f" $timev)
echo "$timev / 1000" | bc -l
}
function findkeyframebeforeframe()
{
# this will show the keyframe that is before the current frame
local film
local frame
local keyframe
frame="$1"
film="$2"
local kflist
kflist="${film##*/}.ffindex_track00.kf.txt"
if [ ! -f "${kflist}" ]
then
$FFMSINDEX $FFMSINDEX_X_ARGS -k -p -c -f "$film" "${film##*/}.ffindex"
if [ ! -f "${kflist}" ]; then
log 1 "ffmsindex failed"
cleanup 20
fi
fi
echo $frame > frame
keyframe=$(cat frame $kflist|sort -n| grep -B 1 "^${frame}$" | head -n1)
case $keyframe in
*#*) keyframe=0;;
esac
echo $keyframe
}
function get_timecode()
{
# convert a string with second.subsecond to hh:mm:ss:SSSSSSSS
local tmp
local subsec
tmp=$1
subsec=${tmp#*.}
subsec=${subsec:0:7}
echo "$($DATE -u -d @${tmp} +%T).${subsec:-0}"
}
# schneide datei mit gegebener cutlist
########################################################################
function cutfilm ()
{ # film, cutlist, vcf2format?
film="$1"
cutlist="$2"
vcf2format="$3"
cuts=""
unset checktimes
checktimes[0]=0
checkcnt=0
unset markerA
unset markerB
markercnt=0
markersminus=0
markerA[0]=0
cd "$tempdir"
if ! [ $(echo "$film" | grep -qv "\.mkv" ) ]
then
if [ $cutwith == "avidemux" ] || [ $cutwith == "smartmkvmergeavconv" ]; then
check_dependencies2
if [ ! -f "${tempdir}/$(basename $film).mkv.ok" ]; then
$MKVMERGE $MKVMERGE_X_ARGS -o "${tempdir}/$(basename $film).mkv" "$film"
if [ $? -ne 0 ] || [ ! -f "${tempdir}/$(basename $film).mkv" ] ; then
log 1 "mkvmerge failed"
cleanup 21
else
touch "${tempdir}/$(basename $film).mkv.ok"
fi
fi
film="${tempdir}/$(basename $film).mkv"
fi
fi
project_start "$film"
getFtype "$film"
fps=$( grep FramesPerSecond "$cutlist" | tr -d "\r" | sed 's/FramesPerSecond=//' )
if [ -z "$fps" -o "$fps" -eq "0" ]; then
log 1 "Frame rate cannot be zero!"
cleanup 1
fi
lines=$( egrep "^(Start|Duration)=" "$cutlist" | tr -d "\r" )
numCuts=$( echo $lines | wc -w )
numCuts=$(( numCuts / 2 ))
curCut=0
for line in $lines ; do
if echo $line | grep -q "Start" ; then ######### startcut ##########
let curCut++
log 3 "${c_info}Cut $curCut of $numCuts"
startcut="${line##*=}"
secs="${startcut%%.*}"
decimalsecs=$[ 10#${startcut##*.} ]
decimalsecs=${decimalsecs::2}
if [ "$startcut" == "0" ]; then
sframe=0
else
frames=`echo "$startcut * $fps + 0.5" | bc` # +0.5 zum runden...
frames=${frames%%.*}
sframe=$frames
fi
sdecimalsecs=$decimalsecs
if [ $cutwith == "avidemux" ]; then
avidemillis=$(echo "$startcut*1000"|bc -l)
millis=$( findclosesttime ${avidemillis} "$film")
echo -n "adm.addSegment(0, $millis, " >> project.py
elif [ $cutwith == "avisplit" ] ; then
time=$( $DATE -u -d @$secs +%T ) # wandelt sekunden.dezimalen in hh:mm:ss um...
frames=$(( ${decimalsecs:-0} / 4 )) # frames ausrechnen runden ist egal
cuts=$cuts$time.$frames- # hh:mm:ss.ms (ms ist frames, nicht millisekunden!!)
elif [ $cutwith == "smartmkvmergeavconv" ] ; then
true
elif [ $cutwith == "smartmkvmerge" ] ; then
true
else
markerB[$markercnt]=$(( $secs*25 + ${decimalsecs:-0} / 4 - $markersminus))
let markersminus=$markersminus+${markerB[$markercnt]}-${markerA[$markercnt]}
let markercnt++
fi
else ######### endcut ############
length="${line##*=}"
if [ $cutwith == "avisplit" ] ; then
add_decimal $startcut ${line##*=}
time=$( $DATE -u -d @$solution +%T )
decimalsecs=${solution##*.}
decimalsecs=${decimalsecs::2}
decimalsecs=${decimalsecs#2}
frames=$(( ${decimalsecs:-0} / 4 ))
cuts=$cuts$time.$frames,
else
frames=`echo "$length * $fps + 0.5 " | bc` # +0.5 zum runden...
frames=${frames%%.*}
if [ -z "$frames" ] || (( $frames == 0 )); then
# Zero length and zero frames
continue
fi
if [ $cutwith == "avidemux" ] ; then
tmp=$(echo "$avidemillis+(${length}*1000)"|bc -l)
log 3 "findclosesttime $tmp)"
# millis=$( findclosesttime $((secs+${length%.*}))$((sdecimalsecs/1000 + decimalsecs/1000)).$((sdecimalsecs % 1000 * 1000 + decimalsecs%1000 * 1000)) "$film")
millis=$( findclosesttime $tmp "$film")
echo "${millis})" >> project.py
elif [ $cutwith == "smartmkvmerge" ] || [ $cutwith == "smartmkvmergeavconv" ]; then
log 3 "Length: $length, Start cut: $startcut"
tmp=$(echo "${startcut} + ${length}"|bc -l)
audio_timecodes="${audio_timecodes},+$(get_timecode $startcut)-$(get_timecode $tmp)"
# log 4 "startframe: $sframe"
# log 4 "duration: $frames" # endframe
skeyframe=$(findkeyframebeforeframe "$sframe" "$film")
local tmp
# encode
log 3 "${c_info}start: $sframe${c_end} ${c_info}end: $((sframe + frames))${c_end} ${c_info}length: $frames"
if iskeyframe $sframe "$film"; then
log 3 "start ist keyframe"
if iskeyframe $((sframe + frames)) "$film"; then
log 3 "end ist keyframe"
# das gesamte geforderte Häppchen endet und beginnt auf keyframes
# FIXME - Beschränkung: maximal 9 Cuts sind so pro Film möglich.
video_splitframes="${video_splitframes},$sframe-$((sframe + frames))"
video_files[${#video_files[@]}]=video_copy-00${checkcnt}.mkv
else
log 3 "end ist kein keyframe"
# das häppchen startet mit keyframe aber endet nicht aufkeyframe
lkeyframe=$(findkeyframebeforeframe "$((sframe + frames))" "$film")
ulkeyframe=$lkeyframe
if (( $lkeyframe < $sframe )); then
ulkeyframe=$sframe
fi
# FIXME - Beschränkung: maximal 9 Cuts sind so pro Film möglich.
video_files[${#video_files[@]}]=video_copy-00${checkcnt}.mkv
outputfilename=cut${checkcnt}_seg3.mkv
if [ $cutwith == "smartmkvmerge" ] && [ ! -f ${outputfilename}.ok ] ; then
$X264 $X264_X_ARGS $x264_opts --index ${tempdir}/x264.index --seek $lkeyframe --frames $((frames-ulkeyframe+sframe)) --output $outputfilename "$film"
if [ $? -ne 0 ] || [ ! -f ${outputfilename} ] || [ $(stat -c %s "${outputfilename}") -eq 0 ]; then
log 1 "x264 failed"
cleanup 22
else
touch ${outputfilename}.ok
fi
elif [ $cutwith == "smartmkvmergeavconv" ] && [ ! -f ${outputfilename}.ok ] ; then
# TODO richtige Start und endwerte prüfen
avstime=$(convertframestostime "$film" $lkeyframe)
preseek=0
if (( ${avstime%.*} > 31 )); then
preseek=$(echo ${avstime%.*}-30|bc)
fi
avstime=$(echo ${avstime} - $preseek| bc -l )
if [ ! -f ${outputfilename}.avi.ok ]; then
$AVCONV $AVCONV_X_ARGS -ss $preseek -i "$film" -ss $avstime $avconvopts -vframes $((frames-ulkeyframe+sframe)) ${outputfilename}.avi
if [ $? -ne 0 ] || [ ! -f ${outputfilename}.avi ] || [ $(stat -c %s "${outputfilename}.avi") -eq 0 ]; then
log 1 "avconv failed"
if [ -f ${outputfilename}.avi ]; then
rm -f ${outputfilename}.avi
fi
cleanup 23
else
touch ${outputfilename}.avi.ok
fi
fi
$MKVMERGE $MKVMERGE_X_ARGS -o "${outputfilename}" "${outputfilename}.avi"
if [ $? -ne 0 ] || [ ! -f ${outputfilename} ] || [ $(stat -c %s "${outputfilename}") -eq 0 ]; then
log 1 "mkvmerge failed"
cleanup 21
else
touch ${outputfilename}.ok
fi
fi
video_files[${#video_files[@]}]=$outputfilename
video_splitframes="${video_splitframes},$sframe-$lkeyframe"
fi
else
log 3 "start ist kein keyframe"
asframe=$(findkeyframeafterframe $sframe "$film")
eframes=$((asframe-sframe))
if (( $asframe > $sframe + $frames )); then
eframes=$frames
fi
outputfilename=cut${checkcnt}_seg1.mkv
if [ $cutwith == "smartmkvmerge" ] && [ ! -f ${outputfilename}.ok ] ; then
$X264 $X264_X_ARGS $x264_opts --index ${tempdir}/x264.index --seek $sframe --frames $((eframes)) --output $outputfilename "$film"
if [ $? -ne 0 ] || [ ! -f $outputfilename ] || [ $(stat -c %s "$outputfilename") -eq 0 ]; then
log 1 "x264 failed"
cleanup 22
else
touch ${outputfilename}.ok
fi
elif [ $cutwith == "smartmkvmergeavconv" ] && [ ! -f ${outputfilename}.ok ] ; then
# TODO richtige Start und endwerte prüfen
avstime=$(convertframestostime "$film" $sframe)
preseek=0
if (( ${avstime%.*} > 31 )); then
preseek=$(echo ${avstime%.*}-30|bc)
fi
avstime=$(echo ${avstime} - $preseek| bc -l )
if [ ! -f ${outputfilename}.avi.ok ]; then
$AVCONV $AVCONV_X_ARGS -ss $preseek -i "$film" -ss $avstime $avconvopts -vframes $((eframes)) ${outputfilename}.avi
if [ $? -ne 0 ] || [ ! -f ${outputfilename}.avi ] || [ $(stat -c %s "${outputfilename}.avi") -eq 0 ]; then
log 1 "avconv failed"
if [ -f ${outputfilename}.avi ]; then
rm -f ${outputfilename}.avi
fi
cleanup 23
else
touch ${outputfilename}.avi.ok
fi
fi
$MKVMERGE $MKVMERGE_X_ARGS -o "${outputfilename}" "${outputfilename}.avi"
if [ $? -ne 0 ] || [ ! -f ${outputfilename} ] || [ $(stat -c %s "${outputfilename}") -eq 0 ]; then
log 1 "mkvmerge failed"
cleanup 21
else
touch ${outputfilename}.ok
fi
fi
video_files[${#video_files[@]}]=$outputfilename
if iskeyframe $((sframe + frames)) "$film"; then
log 3 "end ist keyframe"