1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-23 19:55:38 +01:00

Use rtmpdump in PATH and not in /usr/bin/

This commit is contained in:
Johan Andersson 2011-09-14 17:56:04 +02:00
parent 28f68c6ef2
commit 98ec847937

View File

@ -33,7 +33,7 @@ def getrtmp(url, output, live):
if live:
other2 = "-v"
command = ["/usr/bin/rtmpdump", "-r", url, "-o", output, other, other2]
command = ["rtmpdump", "-r", url, "-o", output, other, other2]
subprocess.call(command)
def gethttp(url, output):