forked from vampjaz/ffmpeg-rp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.py
119 lines (93 loc) · 2.89 KB
/
parser.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
## a simple hacky script that takes the stderr of ffmpeg (piped to stdin of Python) and
## uses that to make a discord rich presence status for your transcode
'''
# a function for your bashrc to automate running the script
# the only issue is that an input or output file with spaces will not be escaped properly
function ffmpeg {
/usr/local/bin/ffmpeg $@ 2>&1 | python3 ~/path/to/parser.py
}
# Alternatively, you can just append this to your ffmpeg command:
2>&1 | python3 ~/path/to/parser.py
# Requires a text file (filename.txt) containing the currect encodes filename
# Example bat file:
for %%a in (*.avs) do echo %%~na > filename.txt & ffmpeg -i "%%a" -vcodec libx264 "%%~na.mkv" -n 2>&1 | python "parser.py"
# ^ This will overwrite the first line of the text file everytime the bat loops with the new current file name.
'''
APP_ID = '447917369512296458'
UPDATE_RATE = 15
import sys
import time
import re
import rpc as discordRP
from pathlib import Path
# super basic arguments:
# -q: do not pass through ffmpeg's output
# -s: show the parsed json each update
QUIET = False
SHOW_JSON = False
if '-q' in sys.argv:
QUIET = True
if '-s' in sys.argv:
SHOW_JSON = True
txt = Path('filename.txt').read_text().rstrip()
rpc = discordRP.DiscordIpcClient.for_platform(APP_ID) # discord rpc object
norm_space = re.compile(r'\s+') # precompiled regex
inbuffer = '' # buffer for textual input
start_time = time.time()
last_update = time.time()-100
def setactivity(data):
firstline = '{}, Frame {} @ {}fps, {}'.format(data.get('File',txt),data.get('frame','NA'),data.get('fps','NA'),data.get('bitrate','NA'))
secondline = 'Position: {}, Size: {}'.format(data.get('time','NA'),data.get('size','NA'))
activity = {
'details':firstline,
'state':secondline,
'timestamps':{
'start':start_time
}
}
rpc.set_activity(activity)
def extractstatus(line):
line_norm = norm_space.sub(' ',line)
pairs = re.split(r'(?<!=)\s',line_norm)
data = {}
for pair in pairs:
if '=' in pair:
key,val = pair.split('=',1)
data[key.strip()] = val.strip()
return data
def parsestatus(line):
global last_update
try:
if time.time() - last_update > UPDATE_RATE:
last_update = time.time()
data = extractstatus(line)
setactivity(data)
if SHOW_JSON:
print(data)
except:
print('error setting activity i think')
pass
def parseline(line):
if 'speed=' in line and 'time=' in line and 'fps=' in line:
parsestatus(line)
def mainloop():
global inbuffer
while True:
inp = sys.stdin.read(16)
if not inp:
exit()
if not QUIET:
sys.stdout.write(inp)
sys.stdout.flush()
inbuffer += inp
while '\n' in inbuffer or '\r' in inbuffer:
nextline = ''
if '\n' in inbuffer:
nextline,inbuffer = inbuffer.split('\n',1)
elif '\r' in inbuffer:
nextline,inbuffer = inbuffer.split('\r',1)
nextline = nextline.strip()
parseline(nextline)
#time.sleep(0.001)
if __name__ == '__main__':
mainloop()