diff --git a/GoProStream.py b/GoProStream.py index be4b2b9..577d6fd 100644 --- a/GoProStream.py +++ b/GoProStream.py @@ -107,7 +107,7 @@ def gopro_live(): print("Recording locally: " + str(SAVE)) print("Recording stored in: " + SAVELOCATION) print("Note: Preview is not available when saving the stream.") - subprocess.Popen("ffmpeg -i 'udp://:10.5.5.100:8554' -fflags nobuffer -f:v mpegts -probesize 8192 " + TS_PARAMS + SAVELOCATION, shell=True) + subprocess.Popen("ffmpeg -i 'udp://10.5.5.100:8554' -fflags nobuffer -f:v mpegts -probesize 8192 " + TS_PARAMS + SAVELOCATION, shell=True) if sys.version_info.major >= 3: MESSAGE = bytes(MESSAGE, "utf-8") print("Press ctrl+C to quit this application.\n")