Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 21
View file
ffhevc.changes
Changed
@@ -1,5 +1,5 @@ ------------------------------------------------------------------- -Wed Nov 16 09:02:00 UTC 2016 - neutrino8@opensuse.org +Wed Nov 16 09:18:00 UTC 2016 - neutrino8@opensuse.org - Update to version 3.0.2 * Added support for 3-pass encoding @@ -10,206 +10,8 @@ * Do some checking on duplicate entries when using additional containers and warn and exit * Updated the man page - -------------------------------------------------------------------- -Mon Nov 14 09:18:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 3.0.1 - * Set default amount of subtitles to 1 instead of exiting when no - value is given - * Allow the user to choose the amount of audio tracks he wants at - run time instead of requiring it to be set in the config file. - This removes config file var MAX_AUD_TRACKS and bumps up version - to 31 - * Renamed array variables audmapval and submapval to audindex and - subindex since we're not mapping but specifying the audio/sub - index id with these vars - * Fixed a possible case where audio params weren't cleared in - case the nosound option was chosen - * Removed an if conditional checking for MAX_SUBS which no longer - is used - -------------------------------------------------------------------- -Sun Nov 13 11:36:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 3.0.0 - * Added support for batch encoding mode, to be activated with the - new -b option. It's used to encode directories with video files - * Renamed variable $mode to $encmode for clarity - * Reworked the input/output code - * Disabled strong-intra-smoothing in the default x265 options - in the config file - * Instead of relying on a config var to set the subtitles amount - to support, ask the user each time to provide it. Makes the - code less complex and easier to extend in the future. Bumps up - config file version to 30 - * Check if the X265PARAMS var is missing from config in case we're - not using an x265 preset - * Updated the man page - -------------------------------------------------------------------- -Sat Nov 12 10:48:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 2.9.9 - * Added support for importing external srt/ssa subtitles for the - mkv, m2ts, mts and ts containers - * Moved the subtitle code into its own video_subtitles_func() - function - * Added support for simultaneously copying subtitles from the - input file and copying external ones - * Renamed variable SUBT to SUBNR for clarity - * Updated the README file and man page - -------------------------------------------------------------------- -Thu Nov 10 21:15:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 2.9.8 - * Check if name of input file matches that of output file and warn - and exit. Requires the realpath utility - * Added support for the m2ts, mts and ts containers - * Merged the code that checks if an audio codec is supported by a - container with that that checks for additional output containers. - Removes code duplication and maintainability - * Update to the audio sample rates. Sync them with - ffmpeg -h encoder=<encoder> - * Restrict TrueHD channels to 2, 5 and 6 as that's what the encoder - supports - * Updated the README file - - -------------------------------------------------------------------- -Wed Nov 09 07:00:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 2.9.7 - * Renamed config var CON to CONFMT. Updates config file version - to 29 - * Reduced some duplication in the audio codec checks for the - container formats - * Reduced some error message duplication when checking if an - additional container supports an audio codec - * Rework to the additional container selection code - * Added color functions for the additional container conversion - * Added back support for the MOV container - -------------------------------------------------------------------- -Tue Nov 08 10:10:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 2.9.6 - * Added support for encoding to TrueHD audio. Requires a very - recent ffmpeg version, preferably latest from git - * Some small improvements to the additional container output - * Moved the video_deinterlace_func() function inside the actual - deinterlace code - * Update to the README file - * Update to the man page - -------------------------------------------------------------------- -Mon Nov 07 16:25:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 2.9.5 - * Cosmetics in the code for deinterlacing - * Instead of skipping FPS conversion if the FPS can't be detected, - ask the user to provide it - * Use single brackets instead of double ones in the nosound - setup code - * Added license snippet at the top of the script - * Added support for outputting to additional container formats - * Do some checking on supported audio codecs for the supported - containers - * Check specified container and warn and exit if it's not supported - * Support setting the FLAC compression level - * Break out of the if conditionals in the audio code and replace - them with two case statements - * Update to the README file - -------------------------------------------------------------------- -Sun Nov 06 09:52:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 2.9.4 - * Bugfix: resampling wasn't working for fdk-aac due to missing - value in the case statement - * Check if output file exists and if so, move it to $file.old - * Use test directly instead of an if condition to set the audio - filters - * Support bitrate calculations for target file size when doing - audio copy - * Use fdk* in the case statements for easier typing - * Renamed variable astrm to astream for clarity - * Use [1-2]p in the case statements for passmodes instead of 1p|2p - * New function, video_field_parity_func(), to detect and report the - interlace field order. Used by motion-compensation deinterlacing - and interlaced encoding - * Detect and display audio sample rate in case resampling is chosen - * Improvements to the video_fps_func() function. Get the FPS value - directly instead of outputting to a file and reading it - -------------------------------------------------------------------- -Sat Nov 05 10:56:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 2.9.3 - * Use a single var, $ofps, to set the output FPS for both - deinterlace bobbing and FPS conversion - * Use new $bob var to indicate that we do bobbing and use that - var to disable FPS conversion - * Renamed $fp var in video_deinterlace_func() to $fpar - * Print a warning message that FPS conversion gets disabled if - the user chooses audio copy - * Added support for the FDK-AAC audio codec. Requires ffmpeg - to be compiled with libfdk-aac support - * Support FPS conversion with the 'fps' filter - * Some minor code optimizations - -------------------------------------------------------------------- -Fri Nov 04 10:43:00 UTC 2016 - neutrino8@opensuse.org - -- Update to version 2.9.2 - * Bugfix: the scale variable was used twice for different things - causing an overwrite of the scale filter parameters, which - eventually results in ffmpeg complaining and exiting - * Added support for NTSC <-> NTSC and NTSC <-> PAL frame rate - conversions - * New var in config file, VID_FPS_CONVERT, to enable/disable - FPS conversion. Bumps up config file version to 28 - * Moved the FPS detection code into its own function so it can - be easily reused - * Minor cosmetics - * Updated the README file - -------------------------------------------------------------------- -Thu Nov 03 15:29:00 UTC 2016 - neutrino8@gmail.com - -- Update to version 2.9.1 - * Added support for interlace-aware encoding - * Added support for the spp, uspp and pp7 deblockers - * Support asking for software scaler during exec time - * Added new SCALE var to the config file to enable/disable - support for software scaling. Bumps up the config file - version to 27 - * Do a test write to see if output directory is writable by - the script executing user - * Updated the README file - -------------------------------------------------------------------- -Wed Nov 02 19:40:00 UTC 2016 - neutrino8@gmail.com - -- Update to version 2.9.0 - * Added support for motion compensation deinterlacing for both - deinterlacing at original FPS and bobbing - * Use denoise var instead of denoiser for the denoise filters - and rotate var instead of transpose for the transpose filter - * Added support for deblocking with the fspp filter. This bumps - up the config file version to 26 - * Update to the README file - -------------------------------------------------------------------- -Tue Nov 01 00:35:00 UTC 2016 - neutrino8@gmail.com - -- Update to version 2.8.9 - * Added support for bobbing (deinterlace at double FPS) - * Cosmetics: add menu header to the Color Primaries option ------------------------------------------------------------------- -======= Mon Nov 14 09:18:00 UTC 2016 - neutrino8@opensuse.org - Update to version 3.0.1 @@ -407,7 +209,6 @@ * Cosmetics: add menu header to the Color Primaries option ------------------------------------------------------------------- ->>>>>>> ./ffhevc.changes.r2 Tue Oct 18 20:26:00 UTC 2016 - neutrino8@gmail.com - Add changes file
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.