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
|
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.
>>>>>>> master
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.
|