Jeffgold commited on
Commit
2d2e1e5
·
1 Parent(s): e14117e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -51,10 +51,10 @@ def convert_video(video_file: File, quality, aspect_ratio, video_url):
51
  output_path = video_file.name[:-len(file_extension)]
52
 
53
  # Add the .m3u8 file extension
54
- output_path += "m3u8"
55
 
56
  # Set the output path to the temp directory
57
- output_path = f"{temp_dir}/{output_path}"
58
 
59
  ffmpeg_command = f"ffmpeg -i {video_file} -c:v libx264 -crf {quality} -f hls -aspect {aspect_ratio} {output_path}"
60
 
@@ -78,4 +78,4 @@ def convert_video(video_file: File, quality, aspect_ratio, video_url):
78
 
79
  from gradio import outputs
80
 
81
- gr.Interface(convert_video, inputs=[video_file, quality, aspect_ratio, video_url], outputs=[outputs.Video()]).launch(share=False)
 
51
  output_path = video_file.name[:-len(file_extension)]
52
 
53
  # Add the .m3u8 file extension
54
+ output_path += ".m3u8"
55
 
56
  # Set the output path to the temp directory
57
+ output_path = os.path.join(temp_dir, output_path)
58
 
59
  ffmpeg_command = f"ffmpeg -i {video_file} -c:v libx264 -crf {quality} -f hls -aspect {aspect_ratio} {output_path}"
60
 
 
78
 
79
  from gradio import outputs
80
 
81
+ gr.Interface(convert_video, inputs=[video_file, quality, aspect_ratio, video_url], outputs=[outputs.Video()]).launch(share=True)