use local ffmpeg path
This commit is contained in:
parent
ed5afd667c
commit
97ed530717
2 changed files with 3 additions and 1 deletions
|
@ -9,6 +9,7 @@ import sys
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
|
import extract
|
||||||
|
|
||||||
class DistributedClient:
|
class DistributedClient:
|
||||||
|
|
||||||
|
@ -39,6 +40,7 @@ class DistributedClient:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def encode(self, oshash, cmd, output):
|
def encode(self, oshash, cmd, output):
|
||||||
|
cmd[0] = extract.command('ffmpeg')
|
||||||
try:
|
try:
|
||||||
p = subprocess.Popen(cmd)
|
p = subprocess.Popen(cmd)
|
||||||
r = None
|
r = None
|
||||||
|
|
|
@ -131,7 +131,7 @@ class Server(Resource):
|
||||||
url = 'http://%s:%s/get/%s' % (request.host.host, request.host.port, oshash)
|
url = 'http://%s:%s/get/%s' % (request.host.host, request.host.port, oshash)
|
||||||
output = '/tmp/%s.%s' % (oshash, self.client.profile)
|
output = '/tmp/%s.%s' % (oshash, self.client.profile)
|
||||||
response['cmd'] = extract.video_cmd(url, output, self.client.profile, info)
|
response['cmd'] = extract.video_cmd(url, output, self.client.profile, info)
|
||||||
response['cmd'][0] = 'avconv'
|
response['cmd'][0] = 'ffmpeg'
|
||||||
response['output'] = output
|
response['output'] = output
|
||||||
self.update_status(oshash, 'active')
|
self.update_status(oshash, 'active')
|
||||||
print oshash, f
|
print oshash, f
|
||||||
|
|
Loading…
Reference in a new issue