Ahmadkhan12 commited on
Commit
e4b8ade
·
verified ·
1 Parent(s): b88d490

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -38
app.py CHANGED
@@ -4,60 +4,54 @@ import ffmpeg
4
  import gradio as gr
5
  import traceback
6
 
7
- # Global variable to store logs
8
  debug_logs = []
9
 
10
- # Function to log messages
11
  def log_message(message):
12
- global debug_logs
13
  debug_logs.append(message)
14
- print(message) # Print to console as well for backend debugging
15
 
16
  # Function to add music to video
17
  def add_music_to_video(video_path, chunks_folder="chunks", output_path="output_with_music.mp4"):
18
  try:
19
- log_message("Starting the process to add music to video...")
20
 
21
- # Check if chunks folder exists
22
- if not os.path.exists(chunks_folder):
23
- error_message = "Error: Chunks folder does not exist."
24
- log_message(error_message)
25
- return error_message
26
-
27
  # List all MP3 files in the chunks folder
28
  music_files = [os.path.join(chunks_folder, f) for f in os.listdir(chunks_folder) if f.endswith('.mp3')]
 
29
  if not music_files:
30
  error_message = "Error: No audio files found in the chunks folder."
31
  log_message(error_message)
32
  return error_message
33
-
34
  # Randomly select one MP3 file
35
  music_file_path = random.choice(music_files)
36
  log_message(f"Selected music file: {music_file_path}")
37
-
38
  # Get the duration of the video
39
  video_info = ffmpeg.probe(video_path)
40
  video_duration = float(video_info['streams'][0]['duration'])
41
  log_message(f"Video duration: {video_duration} seconds")
42
-
43
  # Trim the music file to match the video duration
44
  trimmed_music_path = "trimmed_music.mp3"
45
  ffmpeg.input(music_file_path).output(
46
  trimmed_music_path, ss=0, t=video_duration
47
  ).run(overwrite_output=True)
48
- log_message(f"Trimmed music saved at: {trimmed_music_path}")
49
-
50
  # Combine video and audio
51
  video_input = ffmpeg.input(video_path)
52
  audio_input = ffmpeg.input(trimmed_music_path)
53
  ffmpeg.concat(video_input, audio_input, v=1, a=1).output(
54
  output_path, vcodec="libx264", acodec="aac", strict="experimental"
55
  ).run(overwrite_output=True)
56
- log_message(f"Output video saved at: {output_path}")
57
-
58
  return output_path
59
  except Exception as e:
60
- error_message = f"Error during processing: {str(e)}"
61
  log_message(error_message)
62
  traceback.print_exc()
63
  return error_message
@@ -66,7 +60,13 @@ def add_music_to_video(video_path, chunks_folder="chunks", output_path="output_w
66
  def process_video(uploaded_video):
67
  try:
68
  log_message("Video received for processing.")
69
- video_path = uploaded_video.name
 
 
 
 
 
 
70
  log_message(f"Uploaded video path: {video_path}")
71
 
72
  output_video = add_music_to_video(video_path, chunks_folder="/content/chunks")
@@ -81,23 +81,16 @@ def process_video(uploaded_video):
81
  return None, "\n".join(debug_logs)
82
 
83
  # Gradio Interface
84
- with gr.Blocks() as interface:
85
- gr.Markdown("# Add Background Music to Video")
86
- gr.Markdown("Upload a video, and this app will add a background music track that matches the video duration.")
87
-
88
- with gr.Row():
89
- with gr.Column():
90
- video_input = gr.Video(label="Upload Video")
91
- submit_button = gr.Button("Generate Video")
92
- with gr.Column():
93
- video_output = gr.Video(label="Video with Background Music")
94
- debug_output = gr.Textbox(label="Debug Logs", lines=10, interactive=False)
95
-
96
- submit_button.click(
97
- fn=process_video,
98
- inputs=[video_input],
99
- outputs=[video_output, debug_output]
100
- )
101
 
102
  # Launch Gradio app
103
- interface.launch(share=True, debug=True)
 
4
  import gradio as gr
5
  import traceback
6
 
7
+ # Debug log list
8
  debug_logs = []
9
 
 
10
  def log_message(message):
11
+ """Log messages for debugging."""
12
  debug_logs.append(message)
13
+ print(message)
14
 
15
  # Function to add music to video
16
  def add_music_to_video(video_path, chunks_folder="chunks", output_path="output_with_music.mp4"):
17
  try:
18
+ log_message("Starting add_music_to_video process...")
19
 
 
 
 
 
 
 
20
  # List all MP3 files in the chunks folder
21
  music_files = [os.path.join(chunks_folder, f) for f in os.listdir(chunks_folder) if f.endswith('.mp3')]
22
+
23
  if not music_files:
24
  error_message = "Error: No audio files found in the chunks folder."
25
  log_message(error_message)
26
  return error_message
27
+
28
  # Randomly select one MP3 file
29
  music_file_path = random.choice(music_files)
30
  log_message(f"Selected music file: {music_file_path}")
31
+
32
  # Get the duration of the video
33
  video_info = ffmpeg.probe(video_path)
34
  video_duration = float(video_info['streams'][0]['duration'])
35
  log_message(f"Video duration: {video_duration} seconds")
36
+
37
  # Trim the music file to match the video duration
38
  trimmed_music_path = "trimmed_music.mp3"
39
  ffmpeg.input(music_file_path).output(
40
  trimmed_music_path, ss=0, t=video_duration
41
  ).run(overwrite_output=True)
42
+ log_message("Music trimmed successfully.")
43
+
44
  # Combine video and audio
45
  video_input = ffmpeg.input(video_path)
46
  audio_input = ffmpeg.input(trimmed_music_path)
47
  ffmpeg.concat(video_input, audio_input, v=1, a=1).output(
48
  output_path, vcodec="libx264", acodec="aac", strict="experimental"
49
  ).run(overwrite_output=True)
50
+ log_message(f"Video with music saved to: {output_path}")
51
+
52
  return output_path
53
  except Exception as e:
54
+ error_message = f"Error in add_music_to_video: {str(e)}"
55
  log_message(error_message)
56
  traceback.print_exc()
57
  return error_message
 
60
  def process_video(uploaded_video):
61
  try:
62
  log_message("Video received for processing.")
63
+
64
+ # Ensure the correct handling of uploaded_video as a string or file object
65
+ if isinstance(uploaded_video, str):
66
+ video_path = uploaded_video # If it's already a string path
67
+ else:
68
+ video_path = uploaded_video.name # File-like object with a .name attribute
69
+
70
  log_message(f"Uploaded video path: {video_path}")
71
 
72
  output_video = add_music_to_video(video_path, chunks_folder="/content/chunks")
 
81
  return None, "\n".join(debug_logs)
82
 
83
  # Gradio Interface
84
+ interface = gr.Interface(
85
+ fn=process_video,
86
+ inputs=gr.Video(label="Upload Video"),
87
+ outputs=[
88
+ gr.Video(label="Video with Background Music"),
89
+ gr.Textbox(label="Debug Logs")
90
+ ],
91
+ title="Add Background Music to Video",
92
+ description="Upload a video, and this app will add a 10-second background music track that matches the video duration."
93
+ )
 
 
 
 
 
 
 
94
 
95
  # Launch Gradio app
96
+ interface.launch(share=True)