Advertisement
Codefox

Untitled

May 23rd, 2014
478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.00 KB | None | 0 0
  1.     if re.match('.*, gif, from.*', infos, re.DOTALL):
  2.         pipe = subprocess.Popen([ffmpeg_bin,
  3.                             '-y',  # force overwrite
  4.                             '-i', chunked_file.file.name,
  5.                             '-f', 'webm',
  6.                             '-c:v', 'libvpx',
  7.                             '-crf', '12',
  8.                             '-b:v', '500K',
  9.                             chunked_file.file.name],  # output to original file
  10.                             stdout=subprocess.PIPE,
  11.                             stderr=subprocess.PIPE)
  12.  
  13.         pipe.wait()
  14.  
  15.         pipe = subprocess.Popen([ffmpeg_bin,
  16.                                 '-i', chunked_file.file.name],
  17.                                 stdout=subprocess.PIPE,
  18.                                 stderr=subprocess.PIPE)
  19.  
  20.         pipe.stdout.readline()
  21.         infos = pipe.stderr.read()
  22.     elif not re.match('.*matroska,webm,.*', infos, re.DOTALL):
  23.         return AjaxResponseError({'error': 'wrongformat'})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement