mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-15 13:55:03 -05:00
Fix sysinfo output
This commit is contained in:
parent
76cd072fd2
commit
f36ba9a44a
@ -25,7 +25,7 @@ public class FFProbe implements MediaCharacteristics {
|
||||
}
|
||||
|
||||
public String version() throws IOException {
|
||||
return execute(getFFProbeCommand(), "-show_program_version", "-hide_banner").toString();
|
||||
return execute(getFFProbeCommand(), "-show_program_version", "-hide_banner").toString().trim();
|
||||
}
|
||||
|
||||
protected Map<String, Object> parse(File file) throws IOException, InterruptedException {
|
||||
|
@ -193,7 +193,7 @@ public class AcoustIDClient implements MusicIdentificationService {
|
||||
}
|
||||
|
||||
public String version() throws IOException {
|
||||
return execute(getChromaprintCommand(), "-version").toString();
|
||||
return execute(getChromaprintCommand(), "-version").toString().trim();
|
||||
}
|
||||
|
||||
public Map<ChromaprintField, String> fpcalc(File file) throws IOException, InterruptedException {
|
||||
|
Loading…
Reference in New Issue
Block a user