Skip to content

Commit

Permalink
fixing address for ffmpeg
Browse files Browse the repository at this point in the history
  • Loading branch information
Zutatensuppe committed Aug 25, 2019
1 parent b89315c commit 4224075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GoProStream.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 4224075

Please sign in to comment.