forked from NVIDIA/VideoProcessingFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleDecodeRTSP.py
236 lines (198 loc) · 7.7 KB
/
SampleDecodeRTSP.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#
# Copyright 2019 NVIDIA Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Starting from Python 3.8 DLL search policy has changed.
# We need to add path to CUDA DLLs explicitly.
import multiprocessing
import sys
import os
import threading
from typing import Dict
if os.name == 'nt':
# Add CUDA_PATH env variable
cuda_path = os.environ["CUDA_PATH"]
if cuda_path:
os.add_dll_directory(cuda_path)
else:
print("CUDA_PATH environment variable is not set.", file=sys.stderr)
print("Can't set CUDA DLLs search path.", file=sys.stderr)
exit(1)
# Add PATH as well for minor CUDA releases
sys_path = os.environ["PATH"]
if sys_path:
paths = sys_path.split(';')
for path in paths:
if os.path.isdir(path):
os.add_dll_directory(path)
else:
print("PATH environment variable is not set.", file=sys.stderr)
exit(1)
import PyNvCodec as nvc
import numpy as np
from io import BytesIO
from multiprocessing import Process
import subprocess
import uuid
import json
def get_stream_params(url: str) -> Dict:
cmd = [
'ffprobe',
'-v', 'quiet',
'-print_format', 'json',
'-show_format', '-show_streams', url]
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)
stdout = proc.communicate()[0]
bio = BytesIO(stdout)
json_out = json.load(bio)
params = {}
if not 'streams' in json_out:
return {}
for stream in json_out['streams']:
if stream['codec_type'] == 'video':
params['width'] = stream['width']
params['height'] = stream['height']
params['framerate'] = float(eval(stream['avg_frame_rate']))
codec_name = stream['codec_name']
is_h264 = True if codec_name == 'h264' else False
is_hevc = True if codec_name == 'hevc' else False
if not is_h264 and not is_hevc:
raise ValueError("Unsupported codec: " + codec_name +
'. Only H.264 and HEVC are supported in this sample.')
else:
params['codec'] = nvc.CudaVideoCodec.H264 if is_h264 else nvc.CudaVideoCodec.HEVC
pix_fmt = stream['pix_fmt']
is_yuv420 = pix_fmt == 'yuv420p'
is_yuv444 = pix_fmt == 'yuv444p'
# YUVJ420P and YUVJ444P are deprecated but still wide spread, so handle
# them as well. They also indicate JPEG color range.
is_yuvj420 = pix_fmt == 'yuvj420p'
is_yuvj444 = pix_fmt == 'yuvj444p'
if is_yuvj420:
is_yuv420 = True
params['color_range'] = nvc.ColorRange.JPEG
if is_yuvj444:
is_yuv444 = True
params['color_range'] = nvc.ColorRange.JPEG
if not is_yuv420 and not is_yuv444:
raise ValueError("Unsupported pixel format: " +
pix_fmt +
'. Only YUV420 and YUV444 are supported in this sample.')
else:
params['format'] = nvc.PixelFormat.NV12 if is_yuv420 else nvc.PixelFormat.YUV444
# Color range default option. We may have set when parsing
# pixel format, so check first.
if 'color_range' not in params:
params['color_range'] = nvc.ColorRange.MPEG
# Check actual value.
if 'color_range' in stream:
color_range = stream['color_range']
if color_range == 'pc' or color_range == 'jpeg':
params['color_range'] = nvc.ColorRange.JPEG
# Color space default option:
params['color_space'] = nvc.ColorSpace.BT_601
# Check actual value.
if 'color_space' in stream:
color_space = stream['color_space']
if color_space == 'bt709':
params['color_space'] = nvc.ColorSpace.BT_709
return params
return {}
def rtsp_client(url: str, name: str, gpu_id: int) -> None:
# Get stream parameters
params = get_stream_params(url)
if not len(params):
raise ValueError("Can not get " + url + ' streams params')
w = params['width']
h = params['height']
f = params['format']
c = params['codec']
g = gpu_id
# Prepare ffmpeg arguments
if nvc.CudaVideoCodec.H264 == c:
codec_name = 'h264'
elif nvc.CudaVideoCodec.HEVC == c:
codec_name = 'hevc'
bsf_name = codec_name + '_mp4toannexb,dump_extra=all'
cmd = [
'ffmpeg', '-hide_banner',
'-i', url,
'-c:v', 'copy',
'-bsf:v', bsf_name,
'-f', codec_name,
'pipe:1'
]
# Run ffmpeg in subprocess and redirect it's output to pipe
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)
# Create HW decoder class
nvdec = nvc.PyNvDecoder(w, h, f, c, g)
# Amount of bytes we read from pipe first time.
read_size = 4096
# Total bytes read and total frames decded to get average data rate
rt = 0
fd = 0
# Main decoding loop, will not flush intentionally because don't know the
# amount of frames available via RTSP.
while True:
# Pipe read underflow protection
if not read_size:
read_size = int(rt / fd)
# Counter overflow protection
rt = read_size
fd = 1
# Read data.
# Amount doesn't really matter, will be updated later on during decode.
bits = proc.stdout.read(read_size)
if not len(bits):
print("Can't read data from pipe")
break
else:
rt += len(bits)
# Decode
enc_packet = np.frombuffer(buffer=bits, dtype=np.uint8)
pkt_data = nvc.PacketData()
try:
surf = nvdec.DecodeSurfaceFromPacket(enc_packet, pkt_data)
if not surf.Empty():
fd += 1
# Shifts towards underflow to avoid increasing vRAM consumption.
if pkt_data.bsl < read_size:
read_size = pkt_data.bsl
# Print process ID every second or so.
fps = int(params['framerate'])
if not fd % fps:
print(name)
# Handle HW exceptions in simplest possible way by decoder respawn
except nvc.HwResetException:
nvdec = nvc.PyNvDecoder(w, h, f, c, g)
continue
if __name__ == "__main__":
print("This sample decodes multiple videos in parallel on given GPU.")
print("It doesn't do anything beside decoding, output isn't saved.")
print("Usage: SampleDecodeRTSP.py $gpu_id $url1 ... $urlN .")
if(len(sys.argv) < 3):
print("Provide gpu ID and input URL(s).")
exit(1)
gpuID = int(sys.argv[1])
urls = []
for i in range(2, len(sys.argv)):
urls.append(sys.argv[i])
pool = []
for url in urls:
client = Process(target=rtsp_client, args=(
url, str(uuid.uuid4()), gpuID))
client.start()
pool.append(client)
for client in pool:
client.join()