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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
|
2013-07-08 Carl Hetherington <cth@carlh.net>
* Version 0.108 released.
2013-07-08 Carl Hetherington <cth@carlh.net>
* Add option to pad sound so that silent channels
can be added.
2013-07-08 Carl Hetherington <cth@carlh.net>
* Version 0.107 released.
2013-07-06 Carl Hetherington <cth@carlh.net>
* Various tweaks to layout, trying to make
it more consistent and better looking
(especially on OS X).
2013-07-04 Carl Hetherington <cth@carlh.net>
* Version 0.107beta1 released.
2013-07-04 Carl Hetherington <cth@carlh.net>
* Try to initialise the number of threads to the number
of cores in the machine (#170).
* Pass _FILE_OFFSET_BITS=64 so that fopen() doesn't refuse
to open files of >2GB; fixes failure to re-start jobs
where the MXF has grown larger than 2GB on 32-bit machines.
2013-07-01 Carl Hetherington <cth@carlh.net>
* Version 0.106 released.
2013-07-01 Carl Hetherington <cth@carlh.net>
* Version 0.106beta1 released.
2013-06-28 Carl Hetherington <cth@carlh.net>
* Version 0.105 released.
2013-06-28 Carl Hetherington <cth@carlh.net>
* Work around GTK bugs related to the directory
picker (in the new film dialogue). There is a
buggy GTK included in Ubuntu 13.04 (and Mint 15).
2013-06-27 Carl Hetherington <cth@carlh.net>
* Version 0.104 released.
2013-06-27 Carl Hetherington <cth@carlh.net>
* Hopefully fix problems with end-trim not working.
2013-06-24 Carl Hetherington <cth@carlh.net>
* Version 0.103 released.
2013-06-20 Carl Hetherington <cth@carlh.net>
* Version 0.102 released.
2013-06-19 Carl Hetherington <cth@carlh.net>
* Version 0.101 released.
2013-06-19 Carl Hetherington <cth@carlh.net>
* Version 0.101beta5 released.
2013-06-19 Carl Hetherington <cth@carlh.net>
* Fix hang when there are problems decoding
audio.
2013-06-19 Carl Hetherington <cth@carlh.net>
* Version 0.101beta4 released.
2013-06-19 Carl Hetherington <cth@carlh.net>
* Version 0.101beta3 released.
2013-06-19 Carl Hetherington <cth@carlh.net>
* Version 0.101beta2 released.
2013-06-19 Carl Hetherington <cth@carlh.net>
* Version 0.101beta1 released.
2013-06-14 Carl Hetherington <cth@carlh.net>
* Version 0.100 released.
2013-06-13 Carl Hetherington <cth@carlh.net>
* Fix ffmpeg's pixel format 13.
2013-06-13 Carl Hetherington <cth@carlh.net>
* Version 0.99 released.
2013-06-09 Carl Hetherington <cth@carlh.net>
* Version 0.98 released.
2013-06-07 Carl Hetherington <cth@carlh.net>
* Version 0.97 released.
2013-06-07 Carl Hetherington <cth@carlh.net>
* Version 0.96 released.
2013-06-05 Carl Hetherington <cth@carlh.net>
* Version 0.95 released.
2013-06-05 Carl Hetherington <cth@carlh.net>
* Fix crash on startup on Windows
2013-06-05 Carl Hetherington <cth@carlh.net>
* Version 0.94 released.
2013-06-04 Carl Hetherington <cth@carlh.net>
* Version 0.94beta2 released.
2013-06-04 Carl Hetherington <cth@carlh.net>
* A few fixes to A/B mode.
2013-05-31 Carl Hetherington <cth@carlh.net>
* Version 0.94beta1 released.
2013-05-31 Carl Hetherington <cth@carlh.net>
* Fix ridiculous 100-frame limit on trim
in the GUI.
2013-05-30 Carl Hetherington <cth@carlh.net>
* Preserve the folder to put new films in
across openings of the new film dialog
(#143).
* Various tweaks to video preview; number
frames from 1 (not 0), fix update of frame
on stop.
* Fix missing shortcut to GUI encode server
on Linux (#151).
* Fix incorrect frame display on setting a new
content video (#147).
* Fix problems with mistaken re-use of video
MXFs after trims have changed.
2013-05-20 Carl Hetherington <cth@carlh.net>
* Version 0.93 released.
2013-05-20 Carl Hetherington <cth@carlh.net>
* Fix another crash on still images with
no audio.
2013-05-19 Carl Hetherington <cth@carlh.net>
* Version 0.92 released.
2013-05-19 Carl Hetherington <cth@carlh.net>
* Version 0.91 released.
2013-05-19 Carl Hetherington <cth@carlh.net>
* Hopefully fix load of decimal values (e.g. frame rates)
in non-English locales on Windows.
2013-05-17 Carl Hetherington <cth@carlh.net>
* Version 0.90 released.
2013-05-17 Carl Hetherington <cth@carlh.net>
* Write backtrace files when Windows
version crashes.
* Try to fix crash on stills with no audio.
2013-05-06 Carl Hetherington <cth@carlh.net>
* Fix resizing / redraw problems in audio viewer
on Windows.
2013-05-06 Carl Hetherington <cth@carlh.net>
* Version 0.89 released.
2013-05-04 Carl Hetherington <cth@carlh.net>
* Version 0.89beta1 released.
2013-05-04 Carl Hetherington <cth@carlh.net>
* Very simple batch converter added (#127).
* Add preference for CPL issuer and creator (#122).
* Add preference for default format and DCP content
type (#133).
2013-04-28 Carl Hetherington <cth@carlh.net>
* Version 0.88 released.
2013-04-28 Carl Hetherington <cth@carlh.net>
* Fix broken external audio support.
2013-04-24 Carl Hetherington <cth@carlh.net>
* Allow use of existing empty directories for new films (without
confirmation) and existing non-empty directories (with confirmation)
(#124).
2013-04-26 Carl Hetherington <cth@carlh.net>
* Version 0.87 released.
2013-04-26 Carl Hetherington <cth@carlh.net>
* Make new trim options actually work (#121).
2013-04-23 Carl Hetherington <cth@carlh.net>
* Version 0.86 released.
2013-04-23 Carl Hetherington <cth@carlh.net>
* Version 0.85 released.
2013-04-21 Carl Hetherington <cth@carlh.net>
* Version 0.84 released.
2013-04-21 Carl Hetherington <cth@carlh.net>
* Version 0.84beta5 released.
2013-04-20 Carl Hetherington <cth@carlh.net>
* Fix bad saving of metadata in locales which use
commas to separate decimals (#119).
2013-04-19 Carl Hetherington <cth@carlh.net>
* Add basic frame index and timecode to viewer, and previous/next
frame buttons.
* Version 0.84beta4 released.
2013-04-19 Carl Hetherington <cth@carlh.net>
* Version 0.84beta3 released.
2013-04-19 Carl Hetherington <cth@carlh.net>
* Version 0.84beta2 released.
2013-04-18 Carl Hetherington <cth@carlh.net>
* Version 0.84beta1 released.
2013-04-15 Carl Hetherington <cth@carlh.net>
* Fix error message on forcing language to English (#103).
* Fix problems with content whose first audio content
comes before the first video (resulting in audio being
chopped off at the start of the DCP) (#79).
* Use true 4:3 rather than 1.33.
2013-04-13 Carl Hetherington <cth@carlh.net>
* Use film-name-derived names for MXFs in DCPs (#54).
2013-04-10 Carl Hetherington <cth@carlh.net>
* Version 0.83 released.
2013-04-10 Carl Hetherington <cth@carlh.net>
* Fix incorrect scaling using flat-no-stretch and scope-no-stretch
when the source is cropped (part of #113).
* Fix incorrect display of padded films (rest of #113).
2013-04-09 Carl Hetherington <cth@carlh.net>
* Version 0.82 released.
2013-04-09 Carl Hetherington <cth@carlh.net>
* Version 0.82beta1 released.
2013-04-09 Carl Hetherington <cth@carlh.net>
* Version 0.81 released.
2013-04-09 Carl Hetherington <cth@carlh.net>
* Version 0.81beta1 released.
2013-04-08 Carl Hetherington <cth@carlh.net>
* Add 16:9-within-Scope format.
2013-04-07 Carl Hetherington <cth@carlh.net>
* Version 0.80 released.
2013-04-07 Carl Hetherington <cth@carlh.net>
* Version 0.80beta4 released.
2013-04-07 Carl Hetherington <cth@carlh.net>
* Version 0.80beta3 released.
2013-04-07 Carl Hetherington <cth@carlh.net>
* Version 0.80beta2 released.
2013-04-07 Carl Hetherington <cth@carlh.net>
* Version 0.80beta1 released.
2013-04-07 Carl Hetherington <cth@carlh.net>
* Make the audio plot expand in height when its
window is enlarged.
* Label subtitle offset with "pixels" (#101).
* Speculative fix for error on forcing language
to English (#103).
* Add more explanatory text to describe what is
happening with scaling, cropping and padding (#106).
* Give a hopefully helpful message when clicking Open
without selecting a folder (#99).
* Fix servomatic_gui startup and shutdown on Linux (#98).
* GUI now points out when audio resampling is being done.
* Hopefully fix lack of redraw of the viewer background
on Windows (#86).
2013-04-01 Carl Hetherington <cth@carlh.net>
* Version 0.79 released.
2013-04-01 Carl Hetherington <cth@carlh.net>
* Fix some missing translated strings
on Windows.
2013-03-31 Carl Hetherington <cth@carlh.net>
* Version 0.78 released.
2013-03-28 Carl Hetherington <cth@carlh.net>
* Version 0.78beta16 released.
2013-03-28 Carl Hetherington <cth@carlh.net>
* Version 0.78beta15 released.
2013-03-28 Carl Hetherington <cth@carlh.net>
* Version 0.78beta14 released.
2013-03-27 Carl Hetherington <cth@carlh.net>
* Fix erroneous disk space reporting (#85).
* Version 0.78beta13 released.
2013-03-26 Carl Hetherington <cth@carlh.net>
* Version 0.78beta12 released.
2013-03-26 Carl Hetherington <cth@carlh.net>
* Version 0.78beta11 released.
2013-03-26 Carl Hetherington <cth@carlh.net>
* Version 0.78beta10 released.
2013-03-26 Carl Hetherington <cth@carlh.net>
* Version 0.78beta9 released.
2013-03-26 Carl Hetherington <cth@carlh.net>
* Version 0.78beta8 released.
2013-03-26 Carl Hetherington <cth@carlh.net>
* Add button to cancel jobs.
2013-03-26 Carl Hetherington <cth@carlh.net>
* Version 0.78beta7 released.
2013-03-25 Carl Hetherington <cth@carlh.net>
* Add option to set user interface language.
2013-03-25 Carl Hetherington <cth@carlh.net>
* Version 0.78beta6 released.
2013-03-24 Carl Hetherington <cth@carlh.net>
* Add UI option to select interface language.
2013-03-21 Carl Hetherington <cth@carlh.net>
* Version 0.78beta5 released.
2013-03-20 Carl Hetherington <cth@carlh.net>
* Version 0.78beta4 released.
2013-03-20 Carl Hetherington <cth@carlh.net>
* Version 0.78beta3 released.
2013-03-20 Carl Hetherington <cth@carlh.net>
* Make exception strings translatable (#81).
2013-03-19 Carl Hetherington <cth@carlh.net>
* Version 0.78beta2 released.
2013-03-19 Carl Hetherington <cth@carlh.net>
* Version 0.78beta1 released.
2013-03-19 Carl Hetherington <cth@carlh.net>
* Add it_IT translation from Massimiliano Broggi.
2013-03-14 Carl Hetherington <cth@carlh.net>
* Version 0.77 released.
2013-03-14 Carl Hetherington <cth@carlh.net>
* Version 0.77beta2 released.
2013-03-14 Carl Hetherington <cth@carlh.net>
* Version 0.77beta1 released.
2013-03-14 Carl Hetherington <cth@carlh.net>
* Work-around lack of support for hard links.
* Fix a few bugs with A/B mode.
2013-03-08 Carl Hetherington <cth@carlh.net>
* Disable show audio button and use content audio selector
as appropriate for the audio in the content (#41 and #73).
2013-03-05 Carl Hetherington <cth@carlh.net>
* Version 0.76 released.
2013-03-05 Carl Hetherington <cth@carlh.net>
* Version 0.76beta3 released.
2013-03-04 Carl Hetherington <cth@carlh.net>
* Fix decoding of audio streams with multiple
packets per frame (e.g. wmapro).
2013-03-02 Carl Hetherington <cth@carlh.net>
* Add option to specify the DCP's frame
rate (part of #56).
* Add a description of what each video format
means to the UI.
2013-03-01 Carl Hetherington <cth@carlh.net>
* Version 0.76beta2 released.
2013-03-01 Carl Hetherington <cth@carlh.net>
* Add primitive feature to plot graphs
of the soundtrack (#67).
* Version 0.76beta1 released.
2013-02-27 Carl Hetherington <cth@carlh.net>
* Version 0.75 released.
2013-02-27 Carl Hetherington <cth@carlh.net>
* Version 0.75beta1 released.
* Fix support for some YUV444 pixel formats.
2013-02-23 Carl Hetherington <cth@carlh.net>
* Version 0.74 released.
2013-02-23 Carl Hetherington <cth@carlh.net>
* Version 0.74beta1 released.
2013-02-21 Carl Hetherington <cth@carlh.net>
* Version 0.73 released.
2013-02-20 Carl Hetherington <cth@carlh.net>
* Version 0.73beta9 released.
2013-02-18 Carl Hetherington <cth@carlh.net>
* Version 0.73beta8 released.
2013-02-18 Carl Hetherington <cth@carlh.net>
* Version 0.73beta7 released.
2013-02-17 Carl Hetherington <cth@carlh.net>
* Version 0.73beta6 released.
2013-02-17 Carl Hetherington <cth@carlh.net>
* Version 0.73beta3 released.
2013-02-16 Carl Hetherington <cth@carlh.net>
* Version 0.73beta2 released.
2013-02-16 Carl Hetherington <cth@carlh.net>
* Version 0.73beta1 released.
2013-02-15 Carl Hetherington <cth@carlh.net>
* Fix non-recognition of BMP for still images (#55),
reported by Thierry.
2013-02-12 Carl Hetherington <cth@carlh.net>
* Basic option to open the containing folder for a DCP.
* Don't offer to copy a DCP to the TMS if there isn't
a DCP.
* Fix setup of a default film directory on Windows.
* Remove libx264 dependency.
* Rearrange main window slightly so that the progress
area is larger; give jobs "details" buttons to find out
more about any errors that occur.
2013-02-02 Carl Hetherington <cth@carlh.net>
* Tidy up filters dialog by not showing those
that are not configured in FFmpeg, and by splitting
them up into categories.
* Fix infinite loop of error messages when
`playing back' using a non-existant filter (#39).
* Encode data straight to MXFs, rather
than going via .j2c files. Should roughly
halve required disk space and reduce time
taken.
2013-01-25 Carl Hetherington <cth@carlh.net>
* When using formats which pad smaller frames into
larger ones, the padding black now shown in
the preview.
* Fix the old DCP content type being left behind
when creating a new film.
* Add option to specify default details
for the DCI name details dialog in new
Films (#42).
2013-01-24 Carl Hetherington <cth@carlh.net>
* Version 0.72 released.
2013-01-24 Carl Hetherington <cth@carlh.net>
* Version 0.71 released.
2013-01-24 Carl Hetherington <cth@carlh.net>
* Fix lack of audio with trimmed DCPs.
2013-01-23 Carl Hetherington <cth@carlh.net>
* Remove multi-reel support (for now); needs more thinking about
and testing.
2013-01-12 Carl Hetherington <cth@carlh.net>
* Version 0.71beta2 released.
2013-01-12 Carl Hetherington <cth@carlh.net>
* Version 0.71beta1 released.
2013-01-12 Carl Hetherington <cth@carlh.net>
* Untested support for splitting DCPs
into multiple reels.
2013-01-09 Carl Hetherington <cth@carlh.net>
* Try to build with 0.10.4-ish ffmpeg.
2013-01-07 Carl Hetherington <cth@carlh.net>
* Version 0.70 released.
2013-01-07 Carl Hetherington <cth@carlh.net>
* Fix heinous thinko in mono soundtrack mapping code.
2013-01-06 Carl Hetherington <cth@carlh.net>
* Version 0.70beta3 released.
2013-01-06 Carl Hetherington <cth@carlh.net>
* Postpone linking of duplicate video frames so that copies
don't fail on Windows.
2013-01-06 Carl Hetherington <cth@carlh.net>
* Version 0.70beta2 released.
2013-01-06 Carl Hetherington <cth@carlh.net>
* Version 0.70beta1 released.
2013-01-06 Carl Hetherington <cth@carlh.net>
* Put mono soundtracks on the centre speaker, rather
than on left (reported by Mike Blakesley).
* Add format for 16:9 without letterboxing (requested by Lilian
Lefranc).
2012-12-23 Carl Hetherington <cth@carlh.net>
* Version 0.69 released.
2012-12-23 Carl Hetherington <cth@carlh.net>
* Version 0.68 released.
2012-12-22 Carl Hetherington <cth@carlh.net>
* Version 0.68beta10 released.
2012-12-22 Carl Hetherington <cth@carlh.net>
* Fix wscripts to work with python 3.
2012-12-21 Carl Hetherington <cth@carlh.net>
* Version 0.68beta9 released.
2012-12-21 Carl Hetherington <cth@carlh.net>
* Version 0.68beta8 released.
2012-12-21 Carl Hetherington <cth@carlh.net>
* Version 0.68beta7 released.
2012-12-21 Carl Hetherington <cth@carlh.net>
* Version 0.68beta6 released.
2012-12-21 Carl Hetherington <cth@carlh.net>
* Fix a few bugs.
* Update the manual.
2012-12-20 Carl Hetherington <cth@carlh.net>
* Version 0.68beta5 released.
2012-12-20 Carl Hetherington <cth@carlh.net>
* Version 0.68beta4 released.
2012-12-20 Carl Hetherington <cth@carlh.net>
* Version 0.68beta3 released.
2012-12-20 Carl Hetherington <cth@carlh.net>
* Allow still-image DCPs to have external audio added to them (#13).
2012-12-19 Carl Hetherington <cth@carlh.net>
* Version 0.68beta2 released.
2012-12-19 Carl Hetherington <cth@carlh.net>
* Version 0.68beta1 released.
2012-12-18 Carl Hetherington <cth@carlh.net>
* Alter film viewer so that it is much quicker, responds instantly
to changes in video filtering settings, and can (roughly) play the
source material back.
* Make the examination of content for length optional, so that
if a source file has an accurate header you can trust it.
2012-12-18 Carl Hetherington <cth@carlh.net>
* Version 0.67 released.
2012-12-18 Carl Hetherington <cth@carlh.net>
* Support non-planar float and signed
16-bit planar audio; be less
crashy when unsupported audio formats
are found.
2012-12-18 Carl Hetherington <cth@carlh.net>
* Version 0.66 released.
2012-12-18 Carl Hetherington <cth@carlh.net>
* Version 0.65 released.
2012-12-13 Carl Hetherington <cth@carlh.net>
* Version 0.64 released.
2012-12-13 Carl Hetherington <cth@carlh.net>
* Version 0.63 released.
2012-12-13 Carl Hetherington <cth@carlh.net>
* Re-fix reports of zero audio channels
with soundtracks of some source files.
2012-12-13 Carl Hetherington <cth@carlh.net>
* Version 0.62 released.
2012-12-13 Carl Hetherington <cth@carlh.net>
* Improve progress reporting during the final
DCP make job; should stop the bar sitting at 100%
for a while during digest creation.
2012-12-11 Carl Hetherington <cth@carlh.net>
* Version 0.61 released.
2012-12-11 Carl Hetherington <cth@carlh.net>
* More .deb dep tweaks.
2012-12-11 Carl Hetherington <cth@carlh.net>
* Version 0.60 released.
2012-12-11 Carl Hetherington <cth@carlh.net>
* Hopefully fix utterly broken partially-static
builds for .debs.
* Fix specification of architecture in .debs.
2012-12-10 Carl Hetherington <cth@carlh.net>
* Add a check-box (which defaults to on) which tells DVD-o-matic
not to scan new content files to work out their length, but instead
to trust the length from the header. This length only matters for
working out what thumbnails to generate, so it isn't critical.
Trusting the header will speed up the "Examine Content" job by
a factor of about 2, which is handy for large films.
2012-12-10 Carl Hetherington <cth@carlh.net>
* Version 0.59 released.
2012-12-09 Carl Hetherington <cth@carlh.net>
* Version 0.59beta5 released.
2012-12-09 Carl Hetherington <cth@carlh.net>
* Version 0.59beta4 released.
2012-12-09 Carl Hetherington <cth@carlh.net>
* Version 0.59beta3 released.
2012-12-09 Carl Hetherington <cth@carlh.net>
* Version 0.59beta2 released.
2012-12-09 Carl Hetherington <cth@carlh.net>
* Build against libdcp compiled with -O2 instead
of -O3.
2012-12-05 Carl Hetherington <cth@carlh.net>
* Version 0.59beta1 released.
2012-11-15 Carl Hetherington <cth@carlh.net>
* Default to using a DCI name.
* Support for using external sound files instead
of the ones in the video source.
2012-11-14 Carl Hetherington <cth@carlh.net>
* Rearrange the GUI a bit to tidy things up.
* Some internal reorganisation.
2012-12-03 Carl Hetherington <cth@carlh.net>
* Version 0.58 released.
2012-12-03 Carl Hetherington <cth@carlh.net>
* DVD-o-matic and its dependencies rebuilt with
a newer mingw toolchain and with -O2 rather than
-O3 to (hopefully) improve reliability on Windows.
* Fixed problems with 7.1 audio.
2012-11-10 Carl Hetherington <cth@carlh.net>
* Version 0.57 released.
2012-11-10 Carl Hetherington <cth@carlh.net>
* Fix crash when trying to use a DCI name when there
is no soundtrack (yet) (reported by Wolfgang Woehl).
2012-11-07 Carl Hetherington <cth@carlh.net>
* Version 0.56 released.
2012-11-05 Carl Hetherington <cth@carlh.net>
* Remove options to black-out the video when cropping the end;
it complicates the code and is getting a bit close to video
editing.
* Add option to trim from both the start and
the end of the input video.
* Various bug fixes and code rearrangement.
2012-10-14 Carl Hetherington <cth@carlh.net>
* Basic support for DVD and Blu-Ray subtitles.
* Re-add DCI naming support.
* Basic support for selection of audio
and subtitle streams.
* Fixes for audio/video sync in some cases.
* Cope with videos with varying size and/or
pixel format.
* Fix bug with handling of YUV422-format videos.
2012-10-09 Carl Hetherington <cth@carlh.net>
* Version 0.55 released.
2012-10-09 Carl Hetherington <cth@carlh.net>
* Fix bug possibly causing randomly-occuring
black thumbnails.
* Fix problems with obtaining frame rate of
WMV files (reported by Anders Nordentoft-Madsen).
2012-10-07 Carl Hetherington <cth@carlh.net>
* Fix up some bugs when using limited DCP
range (reported by Wolfgang Woehl).
* Don't stretch still images for DCPs, just
scale them up and pad them as required.
2012-10-02 Carl Hetherington <cth@carlh.net>
* Version 0.54 released.
2012-10-02 Carl Hetherington <cth@carlh.net>
* When encoding 24 frames per second drop
frame (ie 23.976 frames per second) run the
video at 24 FPS and resample the audio so
that when it is run correspondingly (slightly) fast
it remains in sync.
* Some code cleanup.
2012-10-01 Carl Hetherington <cth@carlh.net>
* Fix aff/666: thumbnail scan is run twice
when changing the content file for a film.
2012-09-28 Carl Hetherington <cth@carlh.net>
* Fix crash bug which seems to have been
exposed by recent changes to ffmpeg.
2012-09-27 Carl Hetherington <cth@carlh.net>
* Version 0.53 released.
2012-09-27 Carl Hetherington <cth@carlh.net>
* Fix unrecognised capital letters on
still-image file extensions.
* Write hashes of frames to disk and
check them before making the final DCP.
2012-09-24 Carl Hetherington <cth@carlh.net>
* Fix problems with overflow on long films.
2012-09-24 Carl Hetherington <cth@carlh.net>
* Version 0.52 released.
2012-09-23 Carl Hetherington <cth@carlh.net>
* Fix alignment of frames per second count.
* Use hopefully more robust networking
code to survive timeouts during reads and
writes.
* Some fixes for bugs when loading Films
created on Windows in Linux.
2012-09-22 Carl Hetherington <cth@carlh.net>
* Fix bug on OK-ing gain calculation
dialog without entering any values.
* Improve spacing in some dialogs.
2012-09-22 Carl Hetherington <cth@carlh.net>
* Version 0.51 released.
2012-09-22 Carl Hetherington <cth@carlh.net>
* Improve transcode job progress reporting.
* Update the slow bits of the properties
dialog in a separate thread to improve
responsiveness.
* Fix edit server button on Windows.
2012-09-22 Carl Hetherington <cth@carlh.net>
* Version 0.50 released.
2012-09-22 Carl Hetherington <cth@carlh.net>
* Rename servomatic to servomatic_cli and
add a very basic system-tray-dwelling GUI server.
* Tweak formatting of properties dialogue
and add a note of how many J2K frames
have already been encoded.
* Correctly set up crop in the viewer
on reloading a film.
2012-09-18 Carl Hetherington <cth@carlh.net>
* Fix non-working removal of encode servers.
* Add GUI front-end to encode server.
2012-09-17 Carl Hetherington <cth@carlh.net>
* Include servomatic in the Windows install.
* Add a simple Properties dialog to give
an estimate of disk space required for an
encode.
2012-09-17 Carl Hetherington <cth@carlh.net>
* Version 0.49 released.
2012-09-16 Carl Hetherington <cth@carlh.net>
* Version 0.48 released.
2012-09-15 Carl Hetherington <cth@carlh.net>
* Slightly speculative fix for failure to
take note of audio gain changes caused by
the Calculate dialogue.
2012-09-12 Carl Hetherington <cth@carlh.net>
* Fix crash when FFmpeg doesn't set up the audio channel
layout for some reason.
2012-09-01 Carl Hetherington <cth@carlh.net>
* Add 1.66-within-flat format.
2012-08-27 Carl Hetherington <cth@carlh.net>
* Version 0.47 released.
2012-08-23 Carl Hetherington <cth@carlh.net>
* Add some more formats.
* Update to use libdcp 0.11.
* Fix build with boost filesystem version 2.
2012-08-10 Carl Hetherington <cth@carlh.net>
* Version 0.46 released.
2012-08-10 Carl Hetherington <cth@carlh.net>
* Untested fixes for failure to encode
content without audio.
2012-08-09 Carl Hetherington <cth@carlh.net>
* Version 0.45 released.
2012-08-09 Carl Hetherington <cth@carlh.net>
* Fix bug with padding in Scope causing corrupt
images.
* Fix bug when using content file names which
start with the name of the film directory.
2012-08-05 Carl Hetherington <cth@carlh.net>
* Version 0.44 released.
2012-08-04 Carl Hetherington <cth@carlh.net>
* Fix bug with content inside the film directory.
2012-08-04 Carl Hetherington <cth@carlh.net>
* Version 0.43 released.
2012-08-04 Carl Hetherington <cth@carlh.net>
* Use wxwidgets .rc file to make Windows version
look nicer.
* Hopefully improve building against different
versions of FFmpeg.
2012-08-04 Carl Hetherington <cth@carlh.net>
* Version 0.42 released.
2012-08-04 Carl Hetherington <cth@carlh.net>
* Request admin priviledges on install for Windows 7.
* Add some missing dependencies to the Windows package.
2012-08-01 Carl Hetherington <cth@carlh.net>
* Version 0.40 released.
2012-08-01 Carl Hetherington <cth@carlh.net>
* Fix a few bugs related to thumbnailing.
* Update for libdcp version 0.06.
2012-07-31 Carl Hetherington <cth@carlh.net>
* Add option to compute required audio gains to
effect the same as a sound processor fader change
(currently for Dolby CP750 only).
2012-07-28 Carl Hetherington <cth@carlh.net>
* Version 0.37 released.
2012-07-28 Carl Hetherington <cth@carlh.net>
* Fix missed frames when encoding caused by server
threads that are attempting to access non-responding
servers.
* Fix makedcp parsing of -v option.
2012-07-28 Carl Hetherington <cth@carlh.net>
* Version 0.36 released.
2012-07-28 Carl Hetherington <cth@carlh.net>
* Install / version tweaks.
2012-07-28 Carl Hetherington <cth@carlh.net>
* Version 0.35 released.
2012-07-27 Carl Hetherington <cth@carlh.net>
* Version 0.31 released.
2012-07-27 Carl Hetherington <cth@carlh.net>
* Speed up thumbnail display.
* Various improvements to Windows port.
* Fix TMS transfer with large files.
* Clean up audio handling code somewhat.
* Re-sample audio to 48kHz or 96kHz if necessary.
* Remove player functionality from DVD-o-matic.
2012-07-22 Carl Hetherington <cth@carlh.net>
* Port to Windows.
* Use MD5 digest to decide on the directory to put J2C files
in, rather than the path of the content.
* Allow building with current FFmpeg git.
* Fix problems when creating cut videos in that the audio is too
short; pad it with silence.
2012-07-21 Carl Hetherington <cth@carlh.net>
* Version 0.29 released.
2012-07-21 Carl Hetherington <cth@carlh.net>
* Tidy widgets and menus when there is no film loaded.
* Option to build with Ubuntu 12.04's FFmpeg libraries.
* Add dialogue box to choose DVD title when ripping.
* Always do an examine run for new content.
2012-07-18 Carl Hetherington <cth@carlh.net>
* Version 0.26 released
2012-07-15 Carl Hetherington <cth@carlh.net>
* Remove code to use `standard' format DCP long names,
as in the wild their use seems to be decreasing, and it
makes the GUI simpler.
* Fix some bugs with sending to servomatic introduced
in the adjustments to padding.
* Write some status text when an unknown-progress
job is running.
* Use new libdcp rather than OpenDCP to generate MXFs
and write DCP XML.
2012-07-14 Carl Hetherington <cth@carlh.net>
* Version 0.25 released.
2012-07-14 Carl Hetherington <cth@carlh.net>
* Various GUI cleanups.
* Remove player from the GUI for now.
* Fix hash down the left-hand side of encoded DCPs.
* Add option to black-out the end of an encode, in order
to remove unwanted frames of video whilst keeping sound.
* Fixes to copy-to-server.
* Fix name of 16:9 format.
2012-07-08 Carl Hetherington <cth@carlh.net>
* Version 0.24 released.
2012-07-08 Carl Hetherington <cth@carlh.net>
* Add support for generating static DCPs from single
image files.
* Add option to copy DCP to a remote server (e.g. a TMS)
via SCP.
* Auto-update thumbs when content changes.
2012-06-10 Carl Hetherington <cth@carlh.net>
* Fix up bad padding setup when there isn't any.
* Restore sound to playomatic; add assert for bad format.
2012-05-26 Carl Hetherington <cth@carlh.net>
* Fix crash on attempting to use a non-existant filter.
* src/lib/filter.cc: Fix typo in filter name.
* Allow configuration of the reference scalers and filters in A/B mode.
* Fix identification of formats in metadata.
2012-05-26 Carl Hetherington <cth@carlh.net>
* Version 0.23 released.
2012-05-28 Carl Hetherington <cth@carlh.net>
* src/lib/player_manager.cc: possible fix to crash when stopping
playback.
* Fix crash in A/B mode.
2012-05-26 Carl Hetherington <cth@carlh.net>
* Version 0.21 released.
2012-05-25 Carl Hetherington <cth@carlh.net>
* Add option to delay audio with respect to video.
* src/tools/fixlengths.cc: add a few more options.
2012-05-22 Carl Hetherington <cth@carlh.net>
* src/tools/dvdomatic.cc: fix website address.
* test: fix up a few test bits.
* README: very brief introduction to a few things.
2012-05-22 Carl Hetherington <cth@carlh.net>
* Version 0.20 released.
|