python实现实时视频流播放代码实例
这篇⽂章主要介绍了python实现实时视频流播放代码实例,⽂中通过⽰例代码介绍的⾮常详细,对⼤家的学习或者⼯作具有⼀定的参考学习价值,需要的朋友可以参考下
@action(methods=['GET'], detail=True)
def video(self, request, pk=None):
"""
获取设备实时视频流
:param request:
:param pk:
:return:
"""
device_obj = _object()
# if device_obj.status == 0:
#  return Response({'error': '设备离线'})
if not sp_address:
return Response({'error': '缺少rtsp地址'})
cache_id = '_video_stream_{}'.format(device_obj.hash)
cache_status = (cache_id, None)
if cache_status is None: # 任务初始化,设置初始时间
cache.set(cache_id, time.time(), timeout=60)
elif isinstance(cache_status, float) and time.time() - cache_status > 30: # 任务已超时, 返回错误信息, ⼀段时间内不再⼊队
return Response({'error': '连接数⽬超过限制, 请稍后再试'})
ret = queue_video(rtsp_address=sp_address, device_hash=device_obj.hash)
logger.info('fetch device %s video job status: %s', pk, ret._status)
if ret._status == b'started' or 'started': # 视频流正常推送中, 刷新播放时间, 返回视频ID
cache.set(cache_id, 'continue', timeout=30)
return Response({'video': ''.join([settings.FFMPEG_VIDEO, device_obj.hash])})
elif ret._status == b'queued' or 'queued': # 视频任务等待中
return Response({'status': '等待建⽴视频连接'})
else: # 建⽴视频任务失败
return Response({'error': '打开视频失败'})
class JobQueue:
"""实时视频播放"""
def __init__(self):
self.video_queue = _queue('video') # 视频推流消息队列
def enqueue_video(self, rtsp_address, device_hash):
"""视频流队列"""
job_id = 'video_{}'.format(device_hash)字体颜代码王者
job = self.video_queue.fetch_job(job_id)
iview分页组件if not job:
job = self.queue_call(
func='utils.ffmpeg.ffmpeg_play',
args=(rtsp_address, device_hash),
timeout=-1,
ttl=30, # 最多等待30秒
result_ttl=0,
job_id=job_id
)
return job
# -*- coding: utf-8 -*-
import subprocess
import threading
import time
import logging
ache import cache
gradle打包依赖的jar
logger = Logger('server.default')
def ffmpeg_play(stream, name):
play = True
cache_id = '_video_stream_{}'.format(name)
cache.set(cache_id, 'continue', timeout=30)
process = None
def upstream():
cmd = "ffmpeg -i '{}' -c:v h264 -f flv -r 25 -an 'rtmp://127.0.0.1:1935/live/{}'".format(stream, name)
python入门教程视屏process = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stderr=subprocess.DEVNULL)    try:
logger.info('device: {} stream thread start: {}'.format(name, stream))
while play:
time.sleep(1)
except Exception as e:
logger.info('device: {} stream thread error {}'.format(name, e))
smilemo游戏finally:
logger.info('device: {} stream thread stop'.format(name))
processmunicate(b'q')
thr = threading.Thread(target=upstream)
thr.start()
try:
while True:
play = (cache_id, '')
if play != 'continue':
logger.info('stop device {} video stream'.format(name))
play = False
groaned翻译break
time.sleep(1)
except Exception as e:
logger.info('device: {} play stream error {}'.format(name, e))
processmunicate(b'q')
logger.info('wait device {} video thread stop'.format(name))
thr.join()
logger.info('device {} video job stop'.format(name))
# 实时视频流播放
RQ_QUEUES = {
'video': {
'USE_REDIS_CACHE': 'video',
}
}
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。