chenjoya commited on
Commit
ebeb6c6
1 Parent(s): e9310bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ liveinfer = LiveInfer()
14
  def ffmpeg_once(src_path: str, dst_path: str, *, fps: int = None, resolution: int = None, pad: str = '#000000', mode='bicubic'):
15
  os.makedirs(os.path.dirname(dst_path), exist_ok=True)
16
  command = [
17
- './ffmpeg/ffmpeg',
18
  '-y',
19
  '-sws_flags', mode,
20
  '-i', src_path,
 
14
  def ffmpeg_once(src_path: str, dst_path: str, *, fps: int = None, resolution: int = None, pad: str = '#000000', mode='bicubic'):
15
  os.makedirs(os.path.dirname(dst_path), exist_ok=True)
16
  command = [
17
+ 'ffmpeg',
18
  '-y',
19
  '-sws_flags', mode,
20
  '-i', src_path,