File size: 8,852 Bytes
17d10a7
a15d204
d448add
db46bfb
1c1b50f
 
db46bfb
1c1b50f
db8ba25
db46bfb
cf3593c
d9bf0f0
b950350
6aba99a
3168a3e
019c404
3168a3e
464b686
 
 
cf3593c
a92463e
2de59b3
464b686
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2169070
464b686
 
2169070
464b686
2169070
464b686
 
 
 
2169070
464b686
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2169070
1a03830
dfa5d3e
464b686
 
1a03830
 
2169070
1a03830
464b686
2169070
464b686
2169070
1a03830
2169070
1a03830
2169070
3168a3e
2de59b3
1a03830
b950350
464b686
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2de59b3
2169070
1a03830
b950350
559ca26
2169070
 
464b686
2169070
 
559ca26
dfa5d3e
464b686
2de59b3
2169070
 
17d10a7
464b686
2169070
464b686
2169070
 
 
217c4b5
cf3593c
464b686
16184b2
2169070
ecc69bf
559ca26
 
2169070
 
464b686
2169070
 
 
 
559ca26
2169070
464b686
2169070
 
464b686
559ca26
d9bf0f0
464b686
d9bf0f0
464b686
1a03830
464b686
1a03830
464b686
2169070
1a03830
464b686
2169070
35e8eba
1a03830
 
ced3fa2
1a03830
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2169070
464b686
1a03830
464b686
1a03830
 
 
 
8c25665
2169070
b950350
1a03830
2169070
 
 
 
 
 
 
b950350
2169070
 
 
 
 
 
 
1d543ba
2169070
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3fe530b
464b686
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
import gradio as gr
import os
import torch
from transformers import (
    AutoTokenizer,
    AutoModelForCausalLM,
    pipeline,
    AutoProcessor,
    MusicgenForConditionalGeneration,
)
from scipy.io.wavfile import write
from pydub import AudioSegment
from dotenv import load_dotenv
import tempfile
import spaces
from TTS.api import TTS

# -------------------------------
# Configuration
# -------------------------------
load_dotenv()
HF_TOKEN = os.getenv("HF_TOKEN")

MODEL_CONFIG = {
    "llama_models": {
        "Meta-Llama-3-8B": "meta-llama/Meta-Llama-3-8B-Instruct",
        "Mistral-7B": "mistralai/Mistral-7B-Instruct-v0.2",
    },
    "tts_models": {
        "Standard English": "tts_models/en/ljspeech/tacotron2-DDC",
        "High Quality": "tts_models/en/ljspeech/vits",
    }
}

# -------------------------------
# Model Manager
# -------------------------------
class ModelManager:
    def __init__(self):
        self.llama_pipelines = {}
        self.musicgen_models = {}
        self.tts_models = {}

    def get_llama_pipeline(self, model_id, token):
        if model_id not in self.llama_pipelines:
            tokenizer = AutoTokenizer.from_pretrained(model_id, use_auth_token=token)
            model = AutoModelForCausalLM.from_pretrained(
                model_id,
                use_auth_token=token,
                torch_dtype=torch.float16,
                device_map="auto"
            )
            self.llama_pipelines[model_id] = pipeline(
                "text-generation",
                model=model,
                tokenizer=tokenizer
            )
        return self.llama_pipelines[model_id]

    def get_musicgen_model(self, model_key="facebook/musicgen-large"):
        if model_key not in self.musicgen_models:
            model = MusicgenForConditionalGeneration.from_pretrained(model_key)
            processor = AutoProcessor.from_pretrained(model_key)
            self.musicgen_models[model_key] = (model, processor)
        return self.musicgen_models[model_key]

    def get_tts_model(self, model_name):
        if model_name not in self.tts_models:
            self.tts_models[model_name] = TTS(model_name)
        return self.tts_models[model_name]

model_manager = ModelManager()

# -------------------------------
# Core Functions
# -------------------------------
@spaces.GPU
def generate_script(user_prompt, model_id, duration, temperature=0.7):
    try:
        text_pipeline = model_manager.get_llama_pipeline(model_id, HF_TOKEN)
        
        prompt = f"""Create a {duration}-second audio promo script with these elements:
1. Voice Script: [clear narration]
2. Sound Design: [3-5 effects]
3. Music: [genre/tempo]

Concept: {user_prompt}"""

        result = text_pipeline(
            prompt,
            max_new_tokens=300,
            temperature=temperature,
            do_sample=True
        )

        return parse_generated_content(result[0]["generated_text"])
    except Exception as e:
        return f"Error: {str(e)}", "", ""

def parse_generated_content(text):
    sections = {
        "Voice Script": "",
        "Sound Design": "",
        "Music": ""
    }
    current_section = None
    
    for line in text.split('\n'):
        line = line.strip()
        if "Voice Script:" in line:
            current_section = "Voice Script"
            line = line.replace("Voice Script:", "").strip()
        elif "Sound Design:" in line:
            current_section = "Sound Design"
            line = line.replace("Sound Design:", "").strip()
        elif "Music:" in line:
            current_section = "Music"
            line = line.replace("Music:", "").strip()
        
        if current_section and line:
            sections[current_section] += line + "\n"
    
    return sections["Voice Script"].strip(), sections["Sound Design"].strip(), sections["Music"].strip()

@spaces.GPU
def generate_voice(script, tts_model, speed=1.0):
    try:
        if not script.strip():
            return "Error: No script provided"

        tts = model_manager.get_tts_model(tts_model)
        output_path = os.path.join(tempfile.gettempdir(), "voice.wav")
        tts.tts_to_file(text=script, file_path=output_path)
        return output_path
    except Exception as e:
        return f"Error: {str(e)}"

@spaces.GPU
def generate_music(prompt, duration_sec=30):
    try:
        model, processor = model_manager.get_musicgen_model()
        inputs = processor(text=[prompt], padding=True, return_tensors="pt")
        
        audio_values = model.generate(**inputs, max_new_tokens=int(duration_sec * 50))
        output_path = os.path.join(tempfile.gettempdir(), "music.wav")
        write(output_path, 44100, audio_values[0, 0].cpu().numpy())
        return output_path
    except Exception as e:
        return f"Error: {str(e)}"

def blend_audio(voice_path, music_path, ducking=True, duck_level=10):
    try:
        voice = AudioSegment.from_wav(voice_path)
        music = AudioSegment.from_wav(music_path)

        # Align durations
        if len(music) < len(voice):
            music = music * (len(voice) // len(music) + 1)
        music = music[:len(voice)]

        # Apply ducking
        if ducking:
            music = music - duck_level
            
        mixed = music.overlay(voice)
        output_path = os.path.join(tempfile.gettempdir(), "final_mix.wav")
        mixed.export(output_path, format="wav")
        return output_path
    except Exception as e:
        return f"Error: {str(e)}"

# -------------------------------
# Gradio Interface
# -------------------------------
with gr.Blocks(title="AI Radio Studio", css=".gradio-container {max-width: 800px !important}") as demo:
    gr.Markdown("""
    # 🎙️ AI Radio Studio
    *Create professional audio content in 4 easy steps*
    """)

    with gr.Tabs():
        with gr.Tab("1️⃣ Concept"):
            concept_input = gr.Textbox(label="Your Idea", placeholder="Describe your radio promo...", lines=3)
            with gr.Row():
                model_select = gr.Dropdown(
                    choices=list(MODEL_CONFIG["llama_models"].values()),
                    label="AI Model",
                    value="meta-llama/Meta-Llama-3-8B-Instruct"
                )
                duration_select = gr.Slider(15, 60, 30, step=15, label="Duration (sec)")
            generate_btn = gr.Button("Generate Script", variant="primary")
            
            script_output = gr.Textbox(label="Voice Script", interactive=True)
            sound_output = gr.Textbox(label="Sound Effects", interactive=True)
            music_output = gr.Textbox(label="Music Style", interactive=True)

        with gr.Tab("2️⃣ Voice"):
            tts_select = gr.Dropdown(
                choices=list(MODEL_CONFIG["tts_models"].values()),
                label="Voice Model",
                value="tts_models/en/ljspeech/tacotron2-DDC"
            )
            voice_btn = gr.Button("Generate Voiceover", variant="primary")
            voice_preview = gr.Audio(label="Preview", type="filepath")

        with gr.Tab("3️⃣ Music"):
            music_btn = gr.Button("Generate Music", variant="primary")
            music_preview = gr.Audio(label="Preview", type="filepath")

        with gr.Tab("4️⃣ Mix"):
            with gr.Row():
                ducking_toggle = gr.Checkbox(True, label="Duck Music")
                duck_level = gr.Slider(0, 20, 10, label="Duck Level (dB)")
            mix_btn = gr.Button("Create Final Mix", variant="primary")
            final_mix = gr.Audio(label="Final Output", type="filepath")

    # Footer Section
    gr.Markdown("""
    <div style="text-align: center; margin-top: 20px; padding: 15px; border-top: 1px solid #e0e0e0;">
        <p style="font-size: 0.9em; color: #666;">
            Created with ❤️ by <a href="https://bilsimaging.com" target="_blank">bilsimaging.com</a>
        </p>
        <a href="https://visitorbadge.io/status?path=https://huggingface.co/spaces/Bils/radiogold">
            <img src="https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fhuggingface.co%2Fspaces%2FBils%2Fradiogold&countColor=%23263759"/>
        </a>
    </div>
    """)

    # Event Handlers
    generate_btn.click(
        generate_script,
        inputs=[concept_input, model_select, duration_select],
        outputs=[script_output, sound_output, music_output]
    )
    
    voice_btn.click(
        generate_voice,
        inputs=[script_output, tts_select],
        outputs=voice_preview
    )
    
    music_btn.click(
        generate_music,
        inputs=[music_output],
        outputs=music_preview
    )
    
    mix_btn.click(
        blend_audio,
        inputs=[voice_preview, music_preview, ducking_toggle, duck_level],
        outputs=final_mix
    )

if __name__ == "__main__":
    demo.launch(server_name="0.0.0.0", server_port=7860)