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

@ -23,6 +23,7 @@ type FFmpeg interface {
Probe(ctx context.Context, files []string) (string, error)
CmdPath() (string, error)
IsAvailable() bool
Version() string
}
func New() FFmpeg {
@ -84,6 +85,24 @@ func (e *ffmpeg) IsAvailable() bool {
return err == nil
}
// Version executes ffmpeg -version and extracts the version from the output.
// Sample output: ffmpeg version 6.0 Copyright (c) 2000-2023 the FFmpeg developers
func (e *ffmpeg) Version() string {
cmd, err := ffmpegCmd()
if err != nil {
return "N/A"
}
out, err := exec.Command(cmd, "-version").CombinedOutput() // #nosec
if err != nil {
return "N/A"
}
parts := strings.Split(string(out), " ")
if len(parts) < 3 {
return "N/A"
}
return parts[2]
}
func (e *ffmpeg) start(ctx context.Context, args []string) (io.ReadCloser, error) {
log.Trace(ctx, "Executing ffmpeg command", "cmd", args)
j := &ffCmd{args: args}