Spaces:
Running
Running
UPDATE
Browse files
app.py
CHANGED
@@ -4,11 +4,10 @@ import gradio as gr
|
|
4 |
from AudioFusion import Fusion
|
5 |
|
6 |
from telethon.sync import TelegramClient, events
|
7 |
-
from decouple import config
|
8 |
|
9 |
-
API_ID =
|
10 |
-
API_HASH =
|
11 |
-
BOT_TOKEN =
|
12 |
|
13 |
def process_audio(input_file,
|
14 |
effect_8d, pan_boundary, jump_percentage, time_l_to_r, volume_multiplier,
|
|
|
4 |
from AudioFusion import Fusion
|
5 |
|
6 |
from telethon.sync import TelegramClient, events
|
|
|
7 |
|
8 |
+
API_ID = os.environ.get("API_ID")
|
9 |
+
API_HASH = os.environ.get("API_HASH")
|
10 |
+
BOT_TOKEN = os.environ.get("BOT_TOKEN")
|
11 |
|
12 |
def process_audio(input_file,
|
13 |
effect_8d, pan_boundary, jump_percentage, time_l_to_r, volume_multiplier,
|