unosquare / ffmediaelement

FFME: The Advanced WPF MediaElement (based on FFmpeg)
https://unosquare.github.io/ffmediaelement/
Other
1.18k stars 244 forks source link

Build the latest comit FFMPEG and FFMPEG.AutoGen versions #400

Closed manity42 closed 5 years ago

manity42 commented 5 years ago

Build the latest commit FFMPEG and FFMPEG.AutoGen versions

* Two questions if i may..

  1. If i wanted to build the latest commits and use the resulting dlls of ffme.win in my app is it documented somewhere what version of FFMPEG libs and FFMPEG.AutoGen that the latest commit is designed to work with ?*

  2. On stack overflow i was told ffmpeg libs v4.2 will be released in a "week or two". It will include a fix for windows that auto deletes the the cache files when using the cache property.

https://github.com/FFmpeg/FFmpeg/commit/50789e356d65270698d0d8495323ebe76a46091a avformat/cache - delete cache file after closing handle Verified that cache files get deleted on Windows

Do you think this lib will update to ffmpeg 4.2 soon after release ?

thanks

Issue Categories

mariodivece commented 5 years ago

Yeah, updating to the latest version of FFmpeg is something I do regularly. We do need to wait for the AutoGen project to update the library calls to match the latest version, but @Ruslan-B always updates the library pretty quickly.

Ruslan-B commented 5 years ago

Well ffmpeg uses semantic versioning (https://semver.org/) which means if it is a minor update (bug fix) you still can use theses bindings safe without any change - the you just can update ffmpeg binaries. As long if you don't use the libraries from dev branch (usually not the best idea in any case) you safe,

manity42 commented 5 years ago

ok thanks