Golang : ffmpeg with os/exec.Command() returns non-zero status
Problem:
You want to use ffmpeg
with os/exec.Command() and Run() to create your video files.
However, it keeps bombing out with the error message:
exit status 1
You are able to execute the command with the supplied parameters and flags just fine on your terminal.
What's going on? How to fix this?
Solution:
Golang's os/exec.Command()
function does not have the shell=true
feature like Python did. ffmpeg is very sensitive to white spaces when running from another program. To fix the problem, simply remove whitespaces by using ,
instead of +
to assemble the flags and parameters to ffmpeg.
For example,
cmd := exec.Command("ffmpeg", "-r "+recordedFPSstring+" -i "+videoFileName+" -r 6 temp_"+videoFileName)
to
cmd := exec.Command("ffmpeg", "-r", recordedFPSstring, "-i", videoFileName, "-r", "6", "temp_"+videoFileName)
See also : Golang : Merge video(OpenCV) and audio(PortAudio) into a mp4 file
By
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.8k Golang : Calculations using complex numbers example
+15.4k nginx: [emerg] unknown directive "ssl"
+6.9k Golang : Find the longest line of text example
+7.6k Golang : Create zip/ePub file without compression(use Store algorithm)
+7.9k Golang : Getting Echo framework StartAutoTLS to work
+23.1k Golang : Calculate time different
+32.6k Golang : Math pow(the power of x^y) example
+3.9k Golang : Switch Redis database redis.NewClient
+14.5k Golang : How to shuffle elements in array or slice?
+36.5k Golang : Convert date or time stamp from string to time.Time type
+20.9k Golang : Read directory content with os.Open
+5.3k Golang : Customize scanner.Scanner to treat dash as part of identifier