Show taglib and ffmpeg versions in the log

This commit is contained in:
Deluan 2024-02-17 12:06:01 -05:00 committed by Deluan Quintão
parent effd588406
commit b67d1c0830
9 changed files with 51 additions and 0 deletions

View file

@ -64,6 +64,10 @@ func (ff *MockFFmpeg) CmdPath() (string, error) {
return "ffmpeg", nil
}
func (ff *MockFFmpeg) Version() string {
return "1.0"
}
func (ff *MockFFmpeg) Read(p []byte) (n int, err error) {
ff.lock.Lock()
defer ff.lock.Unlock()