forked from raplin/OpenNX4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVideoSource.py
125 lines (101 loc) · 3.93 KB
/
VideoSource.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
# coding=utf-8
"""
#requires
#ffmpeg
#for hw accel: Armbian legacy kernel with lib-cedarus (/dev/cedar preset)
mkfifo /tmp/video
#show throughput
cat /tmp/video | cpipe -vr -vw -vt >/dev/null
solve xwindows problem to allow vdpau decode (else sw)
ffmpeg -hwaccel vdpau -i ../../media/test.mp4 -c:v cedrus264 -f rawvideo -vcodec rawvideo -pix_fmt rgb24 /tmp/video
"""
from __future__ import division, print_function
try: # python3
import queue
except ImportError: # python2
import Queue as queue
import os
import threading
import time
# ignore this bit not using hw accel right now
try:
with open("/dev/cedar", "rb"):
pass
except:
pass # print "/dev/cedar not present for hardware acceleration"
FIFO_PIPE = "/tmp/videopipe"
try:
os.mkfifo(FIFO_PIPE)
except:
pass
QUEUE_LENGTH = 4
class VideoSource(object):
def __init__(self, tileW=32, tileH=36, tileArrayW=3, tileArrayH=3, tileIndexX=1, tileIndexY=1):
self.lastFrameTime = 0
# total tile array size
self.tilesX = tileArrayW
self.tilesY = tileArrayH
# each tile
self.tW = tileW
self.tH = tileH
# our x,y offset within that
self.tXOff = tileIndexX * tileW
self.tYOff = tileIndexY * tileH
self.outQueue = queue.Queue(maxsize=QUEUE_LENGTH)
def start(self, sourceFile, fps=25):
self.targetFPS = fps
self.sourceFile = sourceFile
self.listenerThread = threading.Thread(target=self.startListener)
self.listenerThread.daemon = True
self.listenerThread.start()
self.playerThread = threading.Thread(target=self.startPlayer)
self.playerThread.daemon = True
self.playerThread.start()
def startPlayer(self):
totalWidth, totalHeight = self.tW * self.tilesX, self.tH * self.tilesY
# cmd="ffmpeg -y -i %s -vf scale=w=%d:h=%d -vf crop=%d:%d:%d:%d -f rawvideo -vcodec rawvideo -pix_fmt rgb24 /tmp/video -nostats -loglevel 0" % (sourceFile,totalWidth,totalHeight,self.tW,self.tH,self.tXOff,self.tYOff)
# cmd="ffmpeg -y -i %s -vf fps=fps=%d -vf scale=w=%d:h=%d -vf crop=%d:%d:%d:%d -f rawvideo -vcodec rawvideo -pix_fmt rgb24 /tmp/video" % (sourceFile,self.targetFPS,totalWidth,totalHeight,self.tW,self.tH,self.tXOff,self.tYOff)
quietOption = " -nostats -loglevel 0"
# cmd="ffmpeg -y -i %s -vf scale=w=%d:h=%d -vf crop=%d:%d:%d:%d -f rawvideo -vcodec rawvideo -pix_fmt rgb24 %s" % (self.sourceFile,totalWidth,totalHeight,self.tW,self.tH,self.tXOff,self.tYOff,FIFO_PIPE)
# cropping is odd right now
cmd = "ffmpeg -y -i {} -vf scale=w={:d}:h={:d} -f rawvideo -vcodec rawvideo -pix_fmt rgb24 {}".format(self.sourceFile, totalWidth, totalHeight, FIFO_PIPE)
print(cmd)
cmd += quietOption
print("Playing {}".format(cmd))
os.system(cmd)
def readFrame(self, inFile):
frameSize = 3 * self.tW * self.tH
# may stall here
frame = inFile.read(frameSize)
# may stall here
self.outQueue.put(frame)
doPrint = False
if doPrint:
for n in range(16):
print("{:02x} ".format(ord(frame[n])), end=' ')
print("")
now = time.time()
actualFrameTime = now - self.lastFrameTime
self.lastFrameTime = now
frameTime = 1.0 / self.targetFPS
diff = frameTime - actualFrameTime
if diff > 0.001:
# print "sleep",diff
time.sleep(diff)
def getDimensions(self):
return self.tW, self.tH
def nextFrame(self):
return self.outQueue.get() # blcoks, fps limited
def startListener(self):
while True:
with open(FIFO_PIPE, "rb") as f:
while True:
self.readFrame(f)
def test():
vs = VideoSource()
sourceFile = "../../media/1080test.mp4"
vs.start(sourceFile)
while True:
frame = vs.outQueue.get()
print("yay {}".format(ord(frame[0])))
# test()