mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Fix RTSP/TCP socket example to use consistent indentation
This commit is contained in:
parent
e5e293fca4
commit
413b71a4e8
@ -190,17 +190,17 @@ process2.wait()
|
|||||||
packet_size = 4096
|
packet_size = 4096
|
||||||
|
|
||||||
process = (
|
process = (
|
||||||
ffmpeg
|
ffmpeg
|
||||||
.input('rtsp://%s:8554/default')
|
.input('rtsp://%s:8554/default')
|
||||||
.output('-', format='h264')
|
.output('-', format='h264')
|
||||||
.run_async(pipe_stdout=True)
|
.run_async(pipe_stdout=True)
|
||||||
)
|
)
|
||||||
|
|
||||||
while process.poll() is None:
|
while process.poll() is None:
|
||||||
packet = process.stdout.read(packet_size)
|
packet = process.stdout.read(packet_size)
|
||||||
try:
|
try:
|
||||||
tcp_socket.send(packet)
|
tcp_socket.send(packet)
|
||||||
except socket.error:
|
except socket.error:
|
||||||
process.stdout.close()
|
process.stdout.close()
|
||||||
process.wait()
|
process.wait()
|
||||||
break
|
break
|
||||||
|
Loading…
x
Reference in New Issue
Block a user