-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorg.paulpacifico.ShutterEncoder.metainfo.xml
More file actions
1933 lines (1926 loc) · 97.2 KB
/
org.paulpacifico.ShutterEncoder.metainfo.xml
File metadata and controls
1933 lines (1926 loc) · 97.2 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
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
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>org.paulpacifico.ShutterEncoder</id>
<metadata_license>FSFAP</metadata_license>
<project_license>GPL-3.0-only</project_license>
<name>Shutter Encoder</name>
<summary>A converter designed by video editors</summary>
<description>
<p>
List of Functions:
– Without conversion:
Cut without re-encoding, Replace audio, Rewrap, Conform, Merge, Extract, Subtitling, Video inserts
– Sound conversions:
WAV, AIFF, FLAC, ALAC, MP3, AAC, AC3, OPUS, Vorbis, Dolby Digital Plus, Dolby TrueHD
– Editing codecs:
DNxHD, DNxHR, Apple ProRes, QT Animation, GoPro CineForm, Uncompressed
– Output codecs:
H.264, H.265, H.266, VP8, VP9, AV1
– Broadcast codecs:
XDCAM HD422, AVC-Intra 100, XAVC, HAP
– Old codecs:
Theora, MPEG-2, MJPEG, Xvid, DV PAL, WMV, MPEG-1
– Archiving codec:
FFV1
– Images creation:
JPEG, Image
– Burn & Rip:
DVD, Blu-ray, DVD RIP
– Analysis:
Loudness & True Peak, Audio normalization, Cut detection, Black detection, Media offline detection, VMAF
– Download:
Web video
</p>
</description>
<launchable type="desktop-id">org.paulpacifico.ShutterEncoder.desktop</launchable>
<screenshots>
<screenshot type="default">
<caption>Player</caption>
<image>https://www.shutterencoder.com/images/en/Player.png</image>
</screenshot>
<screenshot>
<caption>Color</caption>
<image>https://www.shutterencoder.com/images/en/Color.png</image>
</screenshot>
<screenshot>
<caption>Crop</caption>
<image>https://www.shutterencoder.com/images/en/Crop.png</image>
</screenshot>
<screenshot>
<caption>Overlay</caption>
<image>https://www.shutterencoder.com/images/en/Overlay.png</image>
</screenshot>
<screenshot>
<caption>Burn Subtitles</caption>
<image>https://www.shutterencoder.com/images/en/BurnSubtitles.png</image>
</screenshot>
<screenshot>
<caption>Watermark</caption>
<image>https://www.shutterencoder.com/images/en/Watermark.png</image>
</screenshot>
</screenshots>
<url type="homepage">https://www.shutterencoder.com/</url>
<project_group>Paul Pacifico</project_group>
<provides>
<binary>ShutterEncoder.jar</binary>
</provides>
<releases>
<release version="18.5" date="2024-09-16">
<description><ul>
<li>Added levels for "Preserve folder hierarchy" checkbox</li>
<li>Added {timecode} preset for "Add a suffix" checkbox</li>
<li>Added shift+numpad for "Video Player" scrolling</li>
<li>Improved "Video Player" performance</li>
<li>Corrected bug for presets loading</li>
<li>Corrected bug with yt-dlp process on Mac</li>
<li>Corrected freeze bugs with "Video Player"</li>
<li>Corrected bug with reading timecode metadata</li>
<li>Corrected bug for "Record screen/device" option</li>
<li>Corrected bug with gpu decoding on "Video Player"</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="18.4" date="2024-08-12">
<description><ul>
<li>Corrected display issues</li>
<li>Corrected bug with subtitles display</li>
<li>Corrected bug with "Replace audio" function</li>
<li>Corrected bug with "Image sequence" et AI upscale</li>
<li>Corrected bug with "Add image / video as watermark"</li>
<li>Corrected bug with "Display timecode" and High-DPI screen</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffprobe</li>
</ul>
</description>
</release>
<release version="18.3" date="2024-07-11">
<description><ul>
<li>Added Hungarian language thanks to FowlerJohn</li>
<li>Added presets for "Add a suffix" checkbox</li>
<li>Added 'Mix' option for video player audio</li>
<li>Added "Preserve folder hierarchy" checkbox for "Rewrap" function</li>
<li>Added "Preserve folder hierarchy" checkbox for "Audio normalization" function</li>
<li>Added "Generate hash" option from the file list</li>
<li>Ability to select compression with '.png' format</li>
<li>Improve presets loading</li>
<li>Corrected bug with zoom adjustment</li>
<li>Corrected bug with timecode metadata</li>
<li>Corrected bug with "Rotation" checkbox</li>
<li>Corrected bug with "Image cropping" section</li>
<li>Corrected bug with "Add image / video as watermark"</li>
<li>Corrected bug with UI glitches</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="18.2" date="2024-06-12">
<description><ul>
<li>Improved "Sound conversions" encoding speed</li>
<li>Improved presets saving with destination</li>
<li>Improved "Video player" with VFR files</li>
<li>Corrected bug with "Add image / video as watermark"</li>
<li>Corrected bug with app update on portable version</li>
<li>Corrected bug with "Broadcast codecs"</li>
<li>Corrected bug with "Display" option</li>
<li>Various corrections</li>
<li>Updated ffmpeg, ffprobe</li>
</ul>
</description>
</release>
<release version="18.1" date="2024-05-03">
<description><ul>
<li>Added "Keep source audio tracks" with "Replace audio" function</li>
<li>Added "Disable video player" checkbox to "Settings" window</li>
<li>Added "Zoom" option to "Image adjustment" section</li>
<li>Improved "File size" algorithm for "Output codecs"</li>
<li>Corrected bug with "Broadcast codecs"</li>
<li>Corrected bug with RAW image format</li>
<li>Corrected bug with "Extract" function</li>
<li>Corrected bug with "Web video" function</li>
<li>Corrected bug with "Replace audio" function</li>
<li>Corrected bug with "Change the sample rate" checkbox</li>
<li>Corrected bug with "Automatically wait for file to be a ready" checkbox</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="18.0" date="2024-03-20">
<description><ul>
<li>Improved "Add image / video as watermark" between different media scales</li>
<li>Improved "Add image / video as watermark" -> file path saved</li>
<li>Improved "Display timecode" between different media scales</li>
<li>Improved "Extract" function with 'audio' mode</li>
<li>Improved "Loudness & True Peak" function</li>
<li>Improved audio sample rate selection</li>
<li>Improved reduced window display</li>
<li>Improved audio codecs metadata</li>
<li>Corrected bug with "H.265" function and "Intel Quick Sync"</li>
<li>Corrected bug with "Force display" checkbox on Windows</li>
<li>Corrected bug with "Approximate file size" option</li>
<li>Corrected bugs with oriented media</li>
<li>Corrected bugs with "AI" scaling</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="17.9" date="2024-02-08">
<description><ul>
<li>Added '.j2k' extension for "Image" function</li>
<li>Added "FLAC" audio codec for "AV1" function</li>
<li>Improved '.avif' encoding speed</li>
<li>Ability to use fullscreen mode by double-clicking on the "Video Player"</li>
<li>Corrected bug with "Web video" function and non-standard file names.</li>
<li>Corrected bug with "Rewrap" function and "Add subtitles" section</li>
<li>Corrected bug with "Exclude extensions" checkbox</li>
<li>Corrected bug with "Image cropping" section</li>
<li>Corrected bug with timecode detection</li>
<li>Corrected bug with "DV" input files</li>
<li>Renamed "OGV" to "Theora"</li>
<li>Renamed "OGG" to "Vorbis"</li>
<li>Moved "MPEG-2" & "Theora" functions into "Old codecs"</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated UI core</li>
<li>Updated ffmpeg, ffprobe for Linux</li>
</ul>
</description>
</release>
<release version="17.8" date="2024-01-11">
<description><ul>
<li>Added "Create a subfolder" checkbox for outputs section</li>
<li>Added "Audio normalization" checkbox to "Sound conversions"</li>
<li>Added "Add subtitles" section for "DVD" and "Blu-ray" functions</li>
<li>Improved "Rewrap" function for HEVC source file</li>
<li>Corrected invisible window at startup</li>
<li>Corrected bugs with "Broadcast codecs"</li>
<li>Corrected bug with remaining time display</li>
<li>Corrected bug with multichannel and "OPUS"</li>
<li>Corrected bug with "Replace audio" function</li>
<li>Corrected bug with "Rename the file(s)" option</li>
<li>Corrected bug with "Force interlacing" checkbox</li>
<li>Corrected bug with "Automatically wait for file to be ready" checkbox and "Watch folder"</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffprobe</li>
</ul>
</description>
</release>
<release version="17.7" date="2023-11-17">
<description><ul>
<li>Added more download options for "Web video" function</li>
<li>Added a scrollbar for the "Settings" panel</li>
<li>Ability to shrink the UI to a smaller size</li>
<li>Corrected bug with "AI" scaling & audio offset</li>
<li>Corrected bug with "Replace audio" function</li>
<li>Corrected bug for "Add subtitles" checkbox</li>
<li>Corrected bug with "MP3" function</li>
<li>Improved "Add watermark" checkbox</li>
<li>Improved ".webp" & ".gif" format</li>
<li>Various corrections</li>
</ul>
</description>
</release>
<release version="17.6" date="2023-10-17">
<description><ul>
<li>Ability to burn subtitles in batch</li>
<li>Ability to choose the audio track for "Video Player"</li>
<li>Ability to use "auto" value for "Image cropping" in batch</li>
<li>Improved "Video Player"</li>
<li>Improved waveform loading</li>
<li>Improved "AV1" "Max. Quality" option with "Nvidia NVENC"</li>
<li>Corrected bug with "H.264" and high fps input</li>
<li>Corrected bug with "Pause" button on Windows</li>
<li>Corrected freeze with "Web video" function</li>
<li>Corrected bug with 10-bit source file</li>
<li>Corrected bugs for "Video Player"</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffprobe for Mac</li>
<li>Updated UI core</li>
</ul>
</description>
</release>
<release version="17.5" date="2023-09-22">
<description><ul>
<li>Improved '.webp' format</li>
<li>Corrected bug with "AI" scaling</li>
<li>Corrected bug with '.gif' format</li>
<li>Corrected bug with screenshot icon</li>
<li>Corrected bug with multiple monitors</li>
<li>Corrected bug with "auto" cropping mode</li>
<li>Corrected bug with '.vtt' subtitle format</li>
<li>Corrected bug with "Add subtitles" section</li>
<li>Corrected bug with "Load at startup" option</li>
<li>Corrected bug with "Cut without re-encoding" function</li>
<li>Removed "WeTransfer" output</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="17.4" date="2023-08-30">
<description><ul>
<li>Added "AI 2D" & "AI 3D" scales</li>
<li>Added capture icon for "Image" section</li>
<li>Added "Show waveform" checkbox for "Video Player"</li>
<li>Added "Add subtitles" section for "Rewrap" function</li>
<li>Added "Gamma level" checkbox in "Colorimetry" section</li>
<li>Added "Set film grain denoise" checkbox for "AV1" function</li>
<li>Improved timecode metadata for output codecs</li>
<li>Improved AAC encoding quality on Mac</li>
<li>Improved file metadata loading</li>
<li>Corrected audio crackling sound</li>
<li>Corrected bugs with High-DPI screens</li>
<li>Corrected bug with variable frame rate</li>
<li>Corrected "Video Player" display issues</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated UI core</li>
</ul>
</description>
</release>
<release version="17.3" date="2023-07-18">
<description><ul>
<li>Added 'MaxCLL' & 'MaxFALL' options for HDR</li>
<li>Added "Preserve folder hierarchy" checkbox for "JPEG" & "Image" functions</li>
<li>Ability to preview all settings into the "Video Player"</li>
<li>Improved "Video player" window performance</li>
<li>Improved "Display" checkbox</li>
<li>Improved "Watch Folder"</li>
<li>Improved UI animations</li>
<li>The "Render queue" now only adds selected files</li>
<li>Input and output points are now saved for each file</li>
<li>Moved all GPU accelerations into the bottom bar</li>
<li>Corrected bug with 'Convert from' checkbox with audio codecs</li>
<li>Corrected bug with preset loading with 'CQ' mode</li>
<li>Corrected bugs with "Replace audio" function</li>
<li>Corrected bug with "Transitions" section</li>
<li>Corrected bug with "Web video" function</li>
<li>Corrected window flickering on Mac</li>
<li>Corrected bug with '.gif' format</li>
<li>Corrected freezing bugs</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Removed xpdfreader dependency</li>
<li>Removed mkvmerge dependency</li>
<li>Removed ffplay dependency</li>
<li>Updated ffmpeg, ffprobe</li>
<li>Updated UI core</li>
</ul>
</description>
</release>
<release version="17.2" date="2023-06-07">
<description><ul>
<li>Added "Maximum" option for "H.264" & "H.265" functions</li>
<li>Added "Dolby Digital Plus" audio codec with "Blu-ray" function</li>
<li>Added "Rec. 2020 HLG 10bits" colorspace for "H.265", "VP9" & "AV1 functions</li>
<li>Ability to set input and output points with "Conform" function</li>
<li>Ability to set "H.265" function to lossless using 'CQ' '0'</li>
<li>Improved "Edit media content" window performance & rendering</li>
<li>Moved "Transitions" section to "Edit media content" window</li>
<li>Corrected waveform issue with "Subtitling" function</li>
<li>Corrected bug on timecode metadata reading</li>
<li>Corrected bug with input and output points</li>
<li>Corrected freezing bugs</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="17.1" date="2023-05-02">
<description><ul>
<li>Ability to preview transitions with "Edit media content" window</li>
<li>Ability to select the audio codec for editing and broadcast codecs</li>
<li>Ability to select audio sample rate for editing and broadcast codecs</li>
<li>Ability to convert audio to 'Stereo' or 'Mono' for editing and broadcast codecs</li>
<li>Changed settings.xml & presets location to "/Users/*username*/Shutter Encoder"</li>
<li>Corrected bug with input and output points for sound conversions & output codecs</li>
<li>Corrected bug with "2-pass" checkbox using "VP8 & "VP9" functions</li>
<li>Corrected bug with "Edit media content" window</li>
<li>Corrected bug with "Web video" function</li>
<li>Corrected bug on Shutter Encoder launch</li>
<li>Corrected bugs with preset saving</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="17.0" date="2023-04-18">
<description><ul>
<li>Added "AMD AMF Encoder" support with "AV1" function</li>
<li>Added "Use GPU" checkbox with "Video player" window</li>
<li>Added "CBR" encoding with "Nvidia NVENC" hardware acceleration</li>
<li>Added "Preserve metadata" checkbox for the "Web video" function</li>
<li>Ability to choose the ".tif" compression algorithm</li>
<li>Improved "Video player" window performance & quality</li>
<li>Improved "Display timecode" accuracy</li>
<li>Improved "Image capture" button</li>
<li>Improved framerate detection</li>
<li>Corrected bugs with "Web video" function</li>
<li>Corrected bug with "yadif x2" deinterlacing</li>
<li>Corrected bug with "Cut without re-encoding" function</li>
<li>Corrected bug with "DVD" function and NTSC frame rate</li>
<li>Corrected bug with "Replace audio" function using "shortest" mode</li>
<li>Corrected bug with "Hardware acceleration" checkbox with older Nvidia GPU</li>
<li>Updated Java version</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, youtube-dl</li>
</ul>
</description>
</release>
<release version="16.9" date="2023-03-09">
<description><ul>
<li>Added "Force display" checkbox for "Rewrap" function</li>
<li>Added scale options with auto width or height values</li>
<li>Improved "Disable animations" checkbox and scrolling</li>
<li>Improved "Watch Folder" option with search for subfolders</li>
<li>Improved "Video Player" window with Drop Frame and NDF Timecode</li>
<li>Improved "Web video" function with thumbnail and metadata download</li>
<li>Improved support for "Hardware acceleration" with older Nvidia GPU</li>
<li>Improved "Watch Folder" option by supporting multiple input folders</li>
<li>Corrected NTSC frame rate metadata</li>
<li>Corrected bug with LUT preview and image sequence</li>
<li>Corrected bug with "DVD" function and input aspect</li>
<li>Corrected bug with "DVD" function and NTSC frame rate</li>
<li>Corrected bug with "Web video" function and Twitter URL</li>
<li>Corrected bug with "Video Player" window and preset loading</li>
<li>Corrected bug with "Preserve subtitles" checkbox and ass subtitles</li>
<li>Corrected bug with "DNxHD" and "XDCAM HD422" functions with burning subtitles</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="16.8" date="2023-02-01">
<description><ul>
<li>Added "Set film grain to" for "AV1" function</li>
<li>Added "Enable alpha channel" for "H.265" function on Mac</li>
<li>Added "good" and "best" values for "Video bitrate" with output codecs</li>
<li>Ability to output real interlacing with "H.264" and "H.265" functions</li>
<li>Corrected bug with "CQ" mode using "AV1" function</li>
<li>Corrected "Audio normalization" bug</li>
<li>Various corrections</li>
<li>Updated ffmpeg, ffplay, ffprobe</li>
</ul>
</description>
</release>
<release version="16.7" date="2023-01-05">
<description><ul>
<li>Added "Generate in OP-Atom format" checkbox with "XDCAM HD422" function</li>
<li>Added "AAC" audio codec with "AV1","VP9","VP8" functions</li>
<li>Added "auto" value for "Video bitrate" with output codecs</li>
<li>Added "Force tune" checkbox with "AV1" function</li>
<li>Updated UI core</li>
<li>Corrected bug with audio files using attached picture</li>
<li>Corrected bug when encoding a downloaded video</li>
<li>Corrected "Audio normalization" bugs</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="16.6" date="2022-12-13">
<description><ul>
<li>Added "Hardware acceleration" with "AV1" function</li>
<li>Added "Enable DRC" checkbox for audio codecs</li>
<li>Improved greatly encoding speed when changing scale with filters</li>
<li>Improved "Video Player" window</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe</li>
</ul>
</description>
</release>
<release version="16.5" date="2022-11-09">
<description><ul>
<li>Added "Force interlacing" checkbox for "Blu-ray" function</li>
<li>Added "Auto" pre-settings for "Image cropping" section</li>
<li>Added "384" & "448" values for AAC encoding</li>
<li>Ability to use "Replace audio" function in batch (1st video, 2nd audio and so on)</li>
<li>Ability to download multiple URLs with the "Web video" function</li>
<li>Ability to use Ctrl + i to open "File(s) information..." window</li>
<li>Ability to use ratio for "Image cropping" section</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="16.4" date="2022-10-09">
<description><ul>
<li>Added Chinese traditional language thanks to Bise Chen</li>
<li>Added "Enable fast decode" checkbox for "AV1" function</li>
<li>Ability to use "Mix audio files to" with 5.1 source file</li>
<li>Ability to select nits value for HDR colorspaces</li>
<li>Corrected bug with "Total length of files" option</li>
<li>Corrected bug with framerate detection</li>
<li>Corrected bug with "Merge" function</li>
<li>Corrected Java error at startup</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="16.3" date="2022-09-12">
<description><ul>
<li>Added 'Image' section to output codecs</li>
<li>Added '.avif' format to 'Image' function</li>
<li>Added 'Preview' combobox to 'Edit media content' window</li>
<li>Added 'Vu-meter' checkbox to 'Edit media content' window</li>
<li>Added 'Set framerate mode' checkbox to 'Settings' window</li>
<li>Added 'Set entropy coding to CAVLC' checkbox for 'H.264' function</li>
<li>Ability to play an image sequence from 'Edit media content' window</li>
<li>Corrected bug with 'Watch folder' and 'Edit media content' window</li>
<li>Corrected bug with 'Display video's internal timecode' checkbox</li>
<li>Corrected bug with 'Web video' function on Mac Apple silicon</li>
<li>Corrected bug with 'Rewrap' function for the mxf format</li>
<li>Corrected bugs with subtitles burning</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, yt-dlp</li>
</ul>
</description>
</release>
<release version="16.2" date="2022-08-01">
<description><ul>
<li>Added 'Split' mode to 'Edit media content' window</li>
<li>Corrected bug with alpha detection on VP8 source codec</li>
<li>Corrected bug with subtitles burning when changing scale</li>
<li>Corrected bug with 'Audio normalization' using mono files</li>
<li>Corrected bug with RAW files using 'Edit media content' window</li>
</ul>
</description>
</release>
<release version="16.1" date="2022-06-18">
<description><ul>
<li>Improved "Image adjustment" accuracy</li>
<li>Corrected save and load presets bug</li>
<li>Corrected input and output points bug</li>
<li>Corrected drop frame timecode interpretation</li>
<li>Corrected "Speed" slider bug with audio content</li>
<li>Corrected bugs with keyboard values for "Edit media content" window</li>
<li>Removed temporarily "Enable alpha channel" for "H.265" function</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, yt-dlp</li>
</ul>
</description>
</release>
<release version="16.0" date="2022-05-13">
<description><ul>
<li>Added "25%" & "50%" scaling options</li>
<li>Added value "300" to "XAVC" function</li>
<li>Added "Load at startup:" checkbox from "Settings" window</li>
<li>Added "Preserve subtitles" checkbox for "Cut without re-encoding" function</li>
<li>Added "Preserve metadata" checkbox for "Cut without re-encoding" function</li>
<li>Rebuilt & Optimized "Video Player" window</li>
<li>Renamed "Change input and output point" to "Edit media content" </li>
<li>All display windows are grouped in the "Edit media content" window</li>
<li>Corrected "Web video" download bug</li>
<li>Corrected bug with "Activate the image sequence to:"</li>
<li>Various corrections</li>
<li>Improved "Watch folder"</li>
<li>Improved & Simplified UI</li>
<li>Improved interlacing detection</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="15.9" date="2022-02-24">
<description><ul>
<li>Added "Hide file list path" from "Settings" window</li>
<li>Added "Gamma" slider for "Image adjustement" window</li>
<li>Added "Preserve metadata" checkbox for "Rewrap" function</li>
<li>Added "Generate in OP-Atom format" checkbox for "Rewrap" function</li>
<li>Added "Cut" button for "Subtitling" function</li>
<li>Ability to use "Edit all text" window with "Subtitling" timeline</li>
<li>Ability to use percentage values for scaling video</li>
<li>Rebuilt "Cut detection" function</li>
<li>Improved "Conform" function</li>
<li>Improved "AV1" default quality</li>
<li>Corrected bug with EXR input gamma curve</li>
<li>Corrected bug with "Record screen/device" inputs on Windows</li>
<li>Corrected bug with "XAVC" function thanks @Christophe_Nelson</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe</li>
</ul>
</description>
</release>
<release version="15.8" date="2022-01-20">
<description><ul>
<li>Added "Hardware acceleration" with "Apple ProRes" for M1 Pro/Max</li>
<li>Ability to resize the main window vertically</li>
<li>Ability to store settings.xml into the app folder on Windows</li>
<li>Improved "Image sequence" -> no longer require sequential naming</li>
<li>Improved "Image sequence" -> supports different source file locations</li>
<li>Improved "Extract" function</li>
<li>Corrected bug with "Web video" function</li>
<li>Corrected bug with "Nvidia NVENC" hardware acceleration</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, yt-dlp</li>
</ul>
</description>
</release>
<release version="15.7" date="2021-12-22">
<description><ul>
<li>Added "Work during inactivity" checkbox on Mac Apple Silicon</li>
<li>Added "Enable alpha channel" for "H.265" function on Mac</li>
<li>Added "Set GOP to:" checkbox to "MPEG-1" function</li>
<li>Added "MP3" audio codec for output codecs</li>
<li>Improved "VP8" and "VP9" multithreading</li>
<li>Improved timecode detection</li>
<li>Removed "Shutter Encoder" from context menu</li>
<li>Corrected bug with fade-in/out transitions</li>
<li>Corrected bug with "CQ" mode with "H.265" on "Nvidia NVENC" hardware acceleration</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, yt-dlp</li>
</ul>
</description>
</release>
<release version="15.6" date="2021-11-16">
<description><ul>
<li>Added "Dolby TrueHD" function</li>
<li>Added "MPEG-2" function</li>
<li>Added "4:2:2" colorspaces with "MPEG-2" function</li>
<li>Added "Set GOP to:" checkbox to "MPEG-2" function</li>
<li>Added "Exposure smoothing" checkbox to output codecs</li>
<li>Added "Preserve subtitles" checkbox to "Rewrap" function</li>
<li>Added "Disable minimized window" to "Settings" window</li>
<li>Added "Set chunks to:" checkbox to "HAP" function</li>
<li>Added "Speed" slider to "Video player" window</li>
<li>Ability to choose "RGB" type for "Uncompressed" function</li>
<li>Corrected bug with "CQ" mode on "Nvidia NVENC" hardware acceleration</li>
<li>Corrected rotation bug with "Image adjustement" window</li>
<li>Corrected bug with "Stabilize image" checkbox </li>
<li>Corrected bugs with "Video player" window</li>
<li>Improved timecode detection</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated youtube-dl -> yt-dlp</li>
</ul>
</description>
</release>
<release version="15.5" date="2021-10-05">
<description><ul>
<li>Added support for UTF-8 BOM subtitles</li>
<li>Added support for .ts file format</li>
<li>Added "w3fdif" deinterlacer</li>
<li>Ability to embed multiple subtitles</li>
<li>Improved "Subtitling" function</li>
<li>Improved "Watch folder" algorithm</li>
<li>Improved icons for High-DPI scaling</li>
<li>Improved "Video player" with "Cut without re-encoding" and "Rewrap" functions</li>
<li>Corrected bug with "DVD" and "Blu-ray" functions</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, youtube-dl</li>
</ul>
</description>
</release>
<release version="15.4" date="2021-09-15">
<description><ul>
<li>Added "VP8" codec</li>
<li>Added "2.1" for "Mix audio tracks to :" checkbox</li>
<li>Added "Audio settings" section to "Merge" function</li>
<li>Added 12bits colorspaces for "H.265", "VP9", "AV1" functions</li>
<li>Added "Preserve metadata" checkbox from "Advanced features" section</li>
<li>Corrected bug with "Display timecode" with "Change input and output point" </li>
<li>Corrected "Process file list as Merge" with the "Transitions" section</li>
<li>Corrected timecode issues with drop frame rate thanks @Mike</li>
<li>Corrected bug with "Source in OP-Atom format" checkbox</li>
<li>Improved UI and animations</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="15.3" date="2021-08-01">
<description><ul>
<li>Added "Deflicker" checkbox with output codecs from "Corrections" section</li>
<li>Added "FLAC" & "PCM" audio codecs for "H.264" & "H.265" functions</li>
<li>Added 9 to 16 audio tracks from "Audio settings" section</li>
<li>Added creation date metadata to all video functions</li>
<li>Added "Shutter Encoder" in Windows context menu</li>
<li>Improved "Video Player" window & RAM usage</li>
<li>Improved "Image ajdustement" window</li>
<li>Corrected "XDCAM HD422" bug with "Force interlacing" checkbox</li>
<li>Corrected bugs with "Video Player" window</li>
<li>Corrected bug with "CQ" mode on Mac</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="15.2" date="2021-07-01">
<description><ul>
<li>Added "CQ" option with Apple Silicon version</li>
<li>Improved stability, performance and accuracy of "Video player"</li>
<li>Improved performance and stability of "Subtitling" function</li>
<li>Improved performance of all display windows</li>
<li>Corrected "My functions" presets loading bugs</li>
<li>Corrected bug with RAW image on Mac Apple Silicon</li>
<li>Corrected "Create an image sequence from a video" bug with in/out points thanks @Victor Jantea</li>
<li>Removed VLC dependency</li>
<li>Reduced package size</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="15.1" date="2021-06-01">
<description><ul>
<li>Added "Force display" checkbox with output codecs from "Image sequence"</li>
<li>Ability to choose ".webp" compression quality</li>
<li>Disk space shown inside the destination box</li>
<li>Corrected timecode bug with "WAV" function thanks @Brian Berdan</li>
<li>Corrected font selection bug with Apple Silicon version</li>
<li>Corrected WeTransfer tab bug with Mac Intel version</li>
<li>Corrected "Stabilize image" bug with "Apply a LUT"</li>
<li>Corrected "H.264" function bug 10bits GPU encoding</li>
<li>Corrected "Video player" window display issues</li>
<li>Corrected overlap bugs with fullscreen windows</li>
<li>Corrected update bug with Mac Intel version</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffprobe, ffplay</li>
</ul>
</description>
</release>
<release version="15.0" date="2021-05-06">
<description><ul>
<li>Added Dutch language thanks @Jacob Werkman</li>
<li>Added Portuguese language thanks @Léo Saramago</li>
<li>Added Turkish language thanks @Aygün Yerdeniz</li>
<li>Added "Stabilise image" checkbox for output codecs</li>
<li>Added "Add subtitles" checkbox with "Rewrap" function</li>
<li>Abilty to embed ass/ssa subtitles</li>
<li>Ability to use .scc subtitles files</li>
<li>Ability to use "OPUS" audio codec for "H.264" and "H.265" codecs</li>
<li>Ability to remove OP-Atom hexadecimal suffix by using "Replace suffix by:" checkbox from settings</li>
<li>Corrected bug with NTSC framerates and mxf file creation</li>
<li>Corrected "Record screen/device" bugs on Mac</li>
<li>Corrected "Stabilise image" bug on Windows</li>
<li>Automatic detection of a new language (with xx.properties file)</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffprobe, ffplay</li>
</ul>
</description>
</release>
<release version="14.9" date="2021-04-02">
<description><ul>
<li>Ability to close "Video Player" window with "Apply" button</li>
<li>Ability to use "Video Player" with "Replace audio" function</li>
<li>Ability to use "Audio normalization" with mp3 format</li>
<li>Ability to preview "Record screen/device"</li>
<li>Improved timer for "Watch folder" & "Automatically wait for file to be ready"</li>
<li>Improved "Add subtitles" window with outline option</li>
<li>Improved "My functions" window</li>
<li>Corrected youtube-dl auto update bug on Mac</li>
<li>Corrected "Record screen/device" bugs</li>
<li>Corrected folder rights bugs on Mac</li>
<li>Corrected application startup bugs</li>
<li>Corrected WeTransfer bug</li>
<li>Removed BlackMagic options</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffprobe, ffplay</li>
</ul>
</description>
</release>
<release version="14.8" date="2021-03-04">
<description><ul>
<li>Added RGB tweaking for vibrance with "Image adjustement" window</li>
<li>Added white and black levels with "Image adjustement" window</li>
<li>Added "Film 3+" type for GoPro Cineform codec</li>
<li>Added ".exr" extension for "Image" function</li>
<li>Added "estdif" deinterlacer</li>
<li>Improved "Black detection" function</li>
<li>Corrected "Image ajdustement" bugs </li>
<li>Corrected "Image cropping" bugs</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, youtube-dl</li>
</ul>
</description>
</release>
<release version="14.7" date="2021-02-16">
<description><ul>
<li>Added streaming output tab for "H.264" function</li>
<li>Added "Preserve subtitles" checkbox for output codecs</li>
<li>Added "White balance" & "Tint" for "Image adjustement" window</li>
<li>Corrected bugs for "H.264" & "H.265" functions with GPU</li>
<li>Corrected bugs for "Add subtitles" window</li>
<li>Corrected update bug</li>
<li>Improved "Image adjustement" window</li>
<li>Improved "Settings" window</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe</li>
</ul>
</description>
</release>
<release version="14.6" date="2021-01-20">
<description><ul>
<li>Added "Yes to all", "No to all" options when the file already exists</li>
<li>Ability to record desktop audio with "Record screen/device" on Windows</li>
<li>Ability to use "Record screen/device" with "JPEG" and "Image" functions</li>
<li>Ability to rename extension with "Rename the file(s)" from the list</li>
<li>Corrected "Display timecode / file name / text" font bug on Mac</li>
<li>Corrected many bugs for "Record screen/device"</li>
<li>Corrected "Stabilize image" bug on Windows</li>
<li>Corrected "Add subtitles" video position</li>
<li>Disabled video player autoplay</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="14.5" date="2021-01-07">
<description><ul>
<li>Added "Preserve folder hierarchy" checkbox with output codecs</li>
<li>Corrected display bug with reduce & update windows with High-DPI screens</li>
<li>Corrected "Force deinterlacing" bug with "x2" thanks @smushkan</li>
<li>Corrected "Hardware acceleration" bug with "CRF" mode</li>
<li>Corrected "Colorspace" bug with "H.265" on Mac/Linux</li>
<li>Corrected "Colorspace" bug with "H.264"</li>
<li>Corrected error window bug with Linux</li>
<li>Corrected bugs with "Subtitling" function</li>
<li>Improved "Subtitling" function</li>
<li>Improved Video player window</li>
<li>Improved settings window</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, youtube-dl, VLC</li>
</ul>
</description>
</release>
<release version="14.4" date="2020-12-02">
<description><ul>
<li>Ability to show "frames N°" with "Overlay" window</li>
<li>Ability to use "Separate audio tracks to:" with 5.1 audio file</li>
<li>Ability to use .vtt subtitles with "Add subtitles" checkbox</li>
<li>Corrected bug with "Add subtitles" checkbox on Mac</li>
<li>Corrected timecode display for Retina screens</li>
<li>Switched timecode display over watermark</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, youtube-dl</li>
</ul>
</description>
</release>
<release version="14.3" date="2020-11-01">
<description><ul>
<li>Added "Set GPU decoding to:" from settings icon</li>
<li>Added "Image" section for editing and broadcast codecs</li>
<li>Added "Convert levels:" checkbox in "Colorimetry" section</li>
<li>Added "Remove duplicate frames" checkbox for output codecs thanks @Gabriel Luz</li>
<li>Ability to choose ".mov" extension for "XDCAM HD422" and "AVC-Intra 100" functions</li>
<li>Ability to use .ass or .ssa subtitles file with "Add subtitles" checkbox</li>
<li>Abitity to choose video position with "Crop image..." checkbox</li>
<li>Ability to set language with embedded subtitles</li>
<li>Ability to change theme color</li>
<li>Improved overall theme</li>
<li>Improved "Rewrap" function</li>
<li>Improved "Render Queue" window</li>
<li>Corrected bug for "Enable fast start" checkbox thanks @Steven Giammaria</li>
<li>Corrected timecode display for High-DPI standard screens</li>
<li>Corrected update bug</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe</li>
</ul>
</description>
</release>
<release version="14.2" date="2020-09-10">
<description><ul>
<li>Added "422" & "444" for "Force profile to:" checkbox with "H.264" & "H.265" functions</li>
<li>Added "Force preset to:" enable with "Hardware acceleration:" checkbox</li>
<li>Added "Empty the list when process complete" checkbox from settings icon</li>
<li>Added "Disable animations" checkbox from settings icon</li>
<li>Added "Set scale mode to:" from settings icon</li>
<li>Added "Transitions" section for audio codecs</li>
<li>Added "Mono" option for "Audio settings" section</li>
<li>Added "Mono" option for "Mix audio tracks to:" checkbox</li>
<li>Ability to use "Nvidia NVENC" hardware acceleration for Linux </li>
<li>Ability to display drop-frame timecode</li>
<li>Various improvements for "Video Player" thanks @Mark</li>
<li>Corrected unacessible windows with Linux Mint</li>
<li>Corrected timecode display with "Conform by:" checkbox</li>
<li>Corrected Linux drop shadow bugs</li>
<li>Corrected "CQ" encoding bitrate</li>
<li>Corrected "Render Queue" bug</li>
<li>Corrected various freezes</li>
<li>Updated ffmpeg, ffplay, ffprobe</li>
</ul>
</description>
</release>
<release version="14.1" date="2020-08-15">
<description><ul>
<li>Using SVT-AV1 codec for "AV1" function</li>
<li>Added "Audio settings" section for all audio codecs</li>
<li>Added "5.1" for "Mix audio tracks to :" checkbox</li>
<li>Added "detelecine" option for "Force deinterlacing :" checkbox</li>
<li>Added "Rec. 2020 PQ 10bits HDR", "Rec. 2020 HLG 10bits HDR" colorspaces for "H.265", "VP9", "AV1" functions</li>
<li>Added 10bits colorspaces for "H.264", "H.265", "VP9", "AV1" functions</li>
<li>Added "Force speed to :" checkbox for "VP9", "AV1" functions</li>
<li>Added "Set GOP to :" checkbox for "VP9", "AV1" functions</li>
<li>Added "Force profile to :" checkbox for "AV1" function</li>
<li>Added "Force quality to :" checkbox for "VP9" function</li>
<li>Added "Enable fast start" checkbox for "VP9" function</li>
<li>Added "Force tune to :" for "VP9" function</li>
<li>Added ".mp4" extension for "VP9" function</li>
<li>Improved colorspaces conversion & quality</li>
<li>Corrected interlaced fields inversion bug</li>
<li>Corrected bugs with "Colorimetry" section for broadcast codecs</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe, mkvmerge</li>
<li>Switched to static binaries for Linux</li>
</ul>
</description>
</release>
<release version="14.0" date="2020-07-20">
<description><ul>
<li>Added "Transitions" section</li>
<li>Added "Colormatrix" checkbox in "Colorimetry" section</li>
<li>Added "Bitrates adjustement" section for "Blu-ray" function</li>
<li>Ability to choose "Copy" in "Audio settings" with output codecs</li>
<li>Ability to choose between "Cut" or "Extract" mode for the "Video player"</li>
<li>Ability to choose NTSC framerates for "Image sequence" section thanks @Marvin Claussen</li>
<li>Corrected bugs for "Image adjustement" window</li>
<li>Corrected display bugs for "Overlay" windows</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="13.9" date="2020-07-01">
<description><ul>
<li>Added "Change the sample rate to :" checkbox for "WAV", "AIFF", "FLAC" functions</li>
<li>Ability to change video start with "Image adjustement" window</li>
<li>Ability to "Embed" .srt files</li>
<li>Ability to scroll settings panel</li>
<li>Corrected ratios and display for "Crop..." window</li>
<li>Corrected display for Japanese and Chinese text</li>
<li>Corrected updates bug on linux</li>
<li>Fully working on Linux Mint</li>
<li>Works on Mac OS Big Sur</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated vlc</li>
</ul>
</description>
</release>
<release version="13.8" date="2020-06-01">
<description><ul>
<li>Added "Reduce banding" checkbox in "Corrections" section</li>
<li>Added Apple tag for "H.265" function thanks @David Rutgers</li>
<li>Added ".webm" extension for "AV1" function</li>
<li>Ability to set "bwdif" with "Force deinterlacing :" checkbox</li>
<li>Improved "Watch folder" thanks @Danny Van Spreuwel</li>
<li>Improved "Web video" function</li>
<li>Improved "Video player" window</li>
<li>Corrected deinterlacing filter thanks @David Rutgers</li>
<li>Corrected "Display" checkbox with "Force display to :" option</li>
<li>Corrected bug for "Rewrap" and "Cut without re-encoding" functions</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe</li>
</ul>
</description>
</release>
<release version="13.7" date="2020-05-03">
<description><ul>
<li>Added "CRF" encoding for "AV1" and "VP9" functions</li>
<li>Added "Set number of used threads" from settings icon</li>
<li>Added ".ico" and ".webp" formats with "Image" function</li>
<li>Added "Force preset to :" checkbox for "H.264" and "H.265" functions</li>
<li>Added "PCM 32Bits Float" for "WAV", "AIFF", "Rewrap", "Cut without re-encoding" "Replace audio" and "Audio normalization"</li>
<li>Ability to set Font, Color and Background Color for "Display timecode / file name / text"</li>
<li>Downmix 5.1 to stereo with the output codecs by default</li>
<li>Optimised "Subtitling" function</li>
<li>Corrected update error</li>
<li>Corrected bug for "Force display to :" checkbox</li>
<li>Corrected bug for "JPEG" function with "Create an image sequence from a video" checkbox</li>
<li>Auto unzip presets for "My functions" window</li>
<li>"End to End" function renamed to "Merge"</li>
<li>Various corrections</li>
<li>Various improvements</li>
<li>Updated ffmpeg, ffplay, ffprobe</li>
</ul>
</description>
</release>
<release version="13.6" date="2020-04-05">
<description><ul>
<li>Added "Reverse" option for "Conform by :" checkbox</li>
<li>Added "CRF" encoding for "H.264" and "H.265" functions</li>
<li>Added "Rotate" option for "Image adjustement" window</li>
<li>Added "Add image / video as watermark" checkboxes for "Picture" and "JPEG" functions</li>
<li>Ability to crop any format with "Video cropping" window</li>
<li>Ability to set "settings.xml" file in "Users/*username*/Library/Preferences/Shutter Encoder/" on Mac</li>
<li>Optimised and corrected bugs for waveform loading with "Video player"</li>
<li>Optimised and corrected bugs for "Subtitling" function</li>
<li>Corrected bugs for "Image cropping" window</li>
<li>Corrected display bugs for all windows in overlay section and "Video player" window</li>
<li>Improved "Image adjustement" sliders</li>
<li>Various corrections</li>
<li>Various improvements</li>
</ul>
</description>
</release>
<release version="13.5" date="2020-03-23">
<description><ul>
<li>Ajout de la case "Forcer l'affichage en :" dans la partie "Fonctionnalités avancées"</li>
<li>Possibilité d'agrandir la fenêtre "Rognage image"</li>
<li>Correction bug case "Afficher un timecode/nom du fichier/texte" sur OSX Catalina merci @Tom</li>
<li>Correction bug fonction "DV PAL" avec la partie incrustation</li>
<li>Correction bugs fonction "Vidéo web"</li>
<li>Correction bugs case "Rognage vidéo"</li>
<li>Correction bugs divers</li>
<li>Améliorations diverses</li>
</ul>
</description>
</release>
<release version="13.4" date="2020-03-10">
<description><ul>
<li>Ajout de la fonction "JPEG"</li>