NEWS
av 0.9.3
- Fixes for ffmpeg 7.1
- Cleanup configure script
av 0.9.1 (2024-08-16)
- Fixes for ffmpeg-7
- Remove redunant and deprecated calls to avcodec_close()
av 0.9.0 (2023-12-04)
- Switch FFT to new tx.h API (old API is marked deprecated in ffmpeg 6.1)
av 0.8.6 (2023-10-16)
- Fix pthread linking on Windows
av 0.8.5 (2023-09-25)
- Windows: update to ffmpeg 6.0
av 0.8.4 (2023-08-09)
- Remove a deprecated function
- MacOS: update to ffmpeg 6.0
av 0.8.3 (2023-02-05)
- Remove a harmless warning
- Windows: update to ffmpeg 4.4.3
av 0.8.2 (2022-10-06)
- Fix Wstrict-prototype warnings
av 0.8.1 (2022-08-20)
- Better version check for new new AVChannelLayout (fixes build on ffmpeg 5.0)
av 0.8.0 (2022-08-13)
- Fix build with ffmpeg 5.1
- Switch to new AVChannelLayout APIs for ffmpeg 5.1
av 0.7.0 (2022-02-08)
- Internal changes needed for FFMPEG-5 (issue #40)
av 0.6.0 (2021-05-04)
- Remove accidental NA values from read_audio_bin()
- Windows: add ucrt libs
av 0.5.1 (2020-09-28)
- Fix bug on Catalina that fails loading av if base packages aren't attached. (#29)
- Workaround for false positives in CleanupReporter
av 0.5
- Ported read_audio_bin() to pure C, match parameters with read_audio_fft()
- Fix total_time parameter in av_audio_convert() to account for start time
- Unit test now uses CPU time instead of elapsed time (BDR)
- Added start_time and end_time parameters to read_audio_fft()
- Rename av_video_info to av_media_info
- Minor tweaks to configure script
av 0.4
- Windows/MacOS: CRAN binary packages now ship with ffmpeg 4.2.2 + drivers: vorbis,
vpx, ogg, lame, xvid, x264
- Removed forced keyframes (gop_size) when encoding video from graphics or PNG images.
This reduces output video size, hopefully no major quality regressions.
- New functions for audio! read_audio_fft() and read_audio_bin()
- New method plot.fft_data() for spectogram, e.g: plot(read_audio_fft('sample.mp3'))
- New function av_spectrogram_video() to create spectrogram movie
- Detect and error in configure if FFmpeg is too old
- New parameters channel and sample_rate in av_audio_convert()
av 0.3 (2019-08-21)
- Input can now contain video, i.e. multiple images per file. Previously
we would only read a single image from each input file, but now we read
all of them.
- Major refactoring to suppor the above, hopefully no breakage.
- New functions av_video_convert() and av_audio_convert()
- New function av_video_images()
- Switch to R_UnwindProtect to implement cleanup on exit
- Test, tests, tests, so many tests.
av 0.2 (2018-09-30)