File ffhevc.changes of Package ffhevc (Revision 24)

Currently displaying revision 24 , Show latest

224
 
1
-------------------------------------------------------------------
2
Fri Nov 18 01:35:00 UTC 2016 - neutrino8@opensuse.org
3
4
- Update to version 3.0.3
5
  * Use process number instead of .old when renaming existing files
6
  * Added support for detelecining (IVTC). Bumps up config file
7
    version to 33
8
  * Minor improvements to the cropping code
9
10
-------------------------------------------------------------------
11
Wed Nov 16 09:18:00 UTC 2016 - neutrino8@opensuse.org
12
13
- Update to version 3.0.2
14
  * Added support for 3-pass encoding
15
  * Added support for setting a default audio codec in the config
16
    file. Bumps up config file version to 32
17
  * Moved setting the video bitrate before the video filters
18
  * More variables renamings and other small code tweaks
19
  * Do some checking on duplicate entries when using additional
20
    containers and warn and exit
21
  * Updated the man page
22
  
23
-------------------------------------------------------------------
24
Mon Nov 14 09:18:00 UTC 2016 - neutrino8@opensuse.org
25
26
- Update to version 3.0.1
27
  * Set default amount of subtitles to 1 instead of exiting when no
28
    value is given
29
  * Allow the user to choose the amount of audio tracks he wants at
30
    run time instead of requiring it to be set in the config file.
31
    This removes config file var MAX_AUD_TRACKS and bumps up version
32
    to 31
33
  * Renamed array variables audmapval and submapval to audindex and
34
    subindex since we're not mapping but specifying the audio/sub
35
    index id with these vars
36
  * Fixed a possible case where audio params weren't cleared in
37
    case the nosound option was chosen
38
  * Removed an if conditional checking for MAX_SUBS which no longer
39
    is used
40
41
-------------------------------------------------------------------
42
Sun Nov 13 11:36:00 UTC 2016 - neutrino8@opensuse.org
43
44
- Update to version 3.0.0
45
  * Added support for batch encoding mode, to be activated with the
46
    new -b option. It's used to encode directories with video files
47
  * Renamed variable $mode to $encmode for clarity
48
  * Reworked the input/output code
49
  * Disabled strong-intra-smoothing in the default x265 options
50
    in the config file
51
  * Instead of relying on a config var to set the subtitles amount
52
    to support, ask the user each time to provide it. Makes the
53
    code less complex and easier to extend in the future. Bumps up
54
    config file version to 30
55
  * Check if the X265PARAMS var is missing from config in case we're
56
    not using an x265 preset
57
  * Updated the man page
58
59
-------------------------------------------------------------------
60
Sat Nov 12 10:48:00 UTC 2016 - neutrino8@opensuse.org
61
62
- Update to version 2.9.9
63
  * Added support for importing external srt/ssa subtitles for the
64
    mkv, m2ts, mts and ts containers
65
  * Moved the subtitle code into its own video_subtitles_func()
66
    function
67
  * Added support for simultaneously copying subtitles from the
68
    input file and copying external ones
69
  * Renamed variable SUBT to SUBNR for clarity
70
  * Updated the README file and man page
71
72
-------------------------------------------------------------------
73
Thu Nov 10 21:15:00 UTC 2016 - neutrino8@opensuse.org
74
75
- Update to version 2.9.8
76
  * Check if name of input file matches that of output file and warn
77
    and exit. Requires the realpath utility
78
  * Added support for the m2ts, mts and ts containers
79
  * Merged the code that checks if an audio codec is supported by a
80
    container with that that checks for additional output containers.
81
    Removes code duplication and maintainability
82
  * Update to the audio sample rates. Sync them with
83
    ffmpeg -h encoder=<encoder>
84
  * Restrict TrueHD channels to 2, 5 and 6 as that's what the encoder
85
    supports
86
  * Updated the README file
87
88
89
-------------------------------------------------------------------
90
Wed Nov 09 07:00:00 UTC 2016 - neutrino8@opensuse.org
91
92
- Update to version 2.9.7
93
  * Renamed config var CON to CONFMT. Updates config file version
94
    to 29
95
  * Reduced some duplication in the audio codec checks for the
96
    container formats
97
  * Reduced some error message duplication when checking if an
98
    additional container supports an audio codec
99
  * Rework to the additional container selection code
100
  * Added color functions for the additional container conversion
101
  * Added back support for the MOV container
102
103
-------------------------------------------------------------------
104
Tue Nov 08 10:10:00 UTC 2016 - neutrino8@opensuse.org
105
106
- Update to version 2.9.6
107
  * Added support for encoding to TrueHD audio. Requires a very
108
    recent ffmpeg version, preferably latest from git
109
  * Some small improvements to the additional container output
110
  * Moved the video_deinterlace_func() function inside the actual
111
    deinterlace code
112
  * Update to the README file
113
  * Update to the man page
114
115
-------------------------------------------------------------------
116
Mon Nov 07 16:25:00 UTC 2016 - neutrino8@opensuse.org
117
118
- Update to version 2.9.5
119
  * Cosmetics in the code for deinterlacing
120
  * Instead of skipping FPS conversion if the FPS can't be detected,
121
    ask the user to provide it
122
  * Use single brackets instead of double ones in the nosound
123
    setup code
124
  * Added license snippet at the top of the script
125
  * Added support for outputting to additional container formats
126
  * Do some checking on supported audio codecs for the supported
127
    containers
128
  * Check specified container and warn and exit if it's not supported
129
  * Support setting the FLAC compression level
130
  * Break out of the if conditionals in the audio code and replace
131
    them with two case statements
132
  * Update to the README file
133
  
134
-------------------------------------------------------------------
135
Sun Nov 06 09:52:00 UTC 2016 - neutrino8@opensuse.org
136
137
- Update to version 2.9.4
138
  * Bugfix: resampling wasn't working for fdk-aac due to missing
139
    value in the case statement
140
  * Check if output file exists and if so, move it to $file.old
141
  * Use test directly instead of an if condition to set the audio
142
    filters
143
  * Support bitrate calculations for target file size when doing
144
    audio copy
145
  * Use fdk* in the case statements for easier typing
146
  * Renamed variable astrm to astream for clarity
147
  * Use [1-2]p in the case statements for passmodes instead of 1p|2p
148
  * New function, video_field_parity_func(), to detect and report the
149
    interlace field order. Used by motion-compensation deinterlacing
150
    and interlaced encoding
151
  * Detect and display audio sample rate in case resampling is chosen
152
  * Improvements to the video_fps_func() function. Get the FPS value
153
    directly instead of outputting to a file and reading it
154
155
-------------------------------------------------------------------
156
Sat Nov 05 10:56:00 UTC 2016 - neutrino8@opensuse.org
157
158
- Update to version 2.9.3
159
  * Use a single var, $ofps, to set the output FPS for both
160
    deinterlace bobbing and FPS conversion
161
  * Use new $bob var to indicate that we do bobbing and use that
162
    var to disable FPS conversion
163
  * Renamed $fp var in video_deinterlace_func() to $fpar
164
  * Print a warning message that FPS conversion gets disabled if
165
    the user chooses audio copy
166
  * Added support for the FDK-AAC audio codec. Requires ffmpeg
167
    to be compiled with libfdk-aac support
168
  * Support FPS conversion with the 'fps' filter
169
  * Some minor code optimizations
170
171
-------------------------------------------------------------------
172
Fri Nov 04 10:43:00 UTC 2016 - neutrino8@opensuse.org
173
174
- Update to version 2.9.2
175
  * Bugfix: the scale variable was used twice for different things
176
    causing an overwrite of the scale filter parameters, which
177
    eventually results in ffmpeg complaining and exiting
178
  * Added support for NTSC <-> NTSC and NTSC <-> PAL frame rate
179
    conversions
180
  * New var in config file, VID_FPS_CONVERT, to enable/disable
181
    FPS conversion. Bumps up config file version to 28
182
  * Moved the FPS detection code into its own function so it can
183
    be easily reused
184
  * Minor cosmetics
185
  * Updated the README file
186
187
-------------------------------------------------------------------
188
Thu Nov 03 15:29:00 UTC 2016 - neutrino8@gmail.com
189
190
- Update to version 2.9.1
191
  * Added support for interlace-aware encoding
192
  * Added support for the spp, uspp and pp7 deblockers
193
  * Support asking for software scaler during exec time
194
  * Added new SCALE var to the config file to enable/disable
195
    support for software scaling. Bumps up the config file
196
    version to 27
197
  * Do a test write to see if output directory is writable by
198
    the script executing user
199
  * Updated the README file
200
201
-------------------------------------------------------------------
202
Wed Nov 02 19:40:00 UTC 2016 - neutrino8@gmail.com
203
204
- Update to version 2.9.0
205
  * Added support for motion compensation deinterlacing for both
206
    deinterlacing at original FPS and bobbing
207
  * Use denoise var instead of denoiser for the denoise filters
208
    and rotate var instead of transpose for the transpose filter
209
  * Added support for deblocking with the fspp filter. This bumps
210
    up the config file version to 26
211
  * Update to the README file
212
  
213
-------------------------------------------------------------------
214
Tue Nov 01 00:35:00 UTC 2016 - neutrino8@gmail.com
215
216
- Update to version 2.8.9
217
  * Added support for bobbing (deinterlace at double FPS)
218
  * Cosmetics: add menu header to the Color Primaries option
219
  
220
-------------------------------------------------------------------
221
Tue Oct 18 20:26:00 UTC 2016 - neutrino8@gmail.com
222
223
- Add changes file
224