mirror of
https://github.com/assenzostefano/RetniNet.git
synced 2025-04-03 20:31:12 +02:00
Add title on audio
This commit is contained in:
parent
cd7eb35ff6
commit
3d02ac3513
24
index.py
24
index.py
@ -48,14 +48,6 @@ def send_welcome(message):
|
|||||||
@bot.message_handler(commands=['music'])
|
@bot.message_handler(commands=['music'])
|
||||||
def select_music(pm):
|
def select_music(pm):
|
||||||
print("Triggered command MUSIC.")
|
print("Triggered command MUSIC.")
|
||||||
ydl_opts = {
|
|
||||||
'format': 'bestaudio/best',
|
|
||||||
'postprocessors': [{
|
|
||||||
'key': 'FFmpegExtractAudio',
|
|
||||||
'preferredcodec': 'mp3',
|
|
||||||
'preferredquality': '192',
|
|
||||||
}],
|
|
||||||
}
|
|
||||||
sent_msg = bot.send_message(pm.chat.id, "Inserisci il link della canzone:")
|
sent_msg = bot.send_message(pm.chat.id, "Inserisci il link della canzone:")
|
||||||
bot.register_next_step_handler(sent_msg, music_step)
|
bot.register_next_step_handler(sent_msg, music_step)
|
||||||
|
|
||||||
@ -63,11 +55,11 @@ def select_music(pm):
|
|||||||
def music_step(pm):
|
def music_step(pm):
|
||||||
ytdl_opts = {
|
ytdl_opts = {
|
||||||
'format': 'bestaudio/best',
|
'format': 'bestaudio/best',
|
||||||
'outtmpl': 'song.%(ext)s',
|
'outtmpl': '%(title)s.%(ext)s',
|
||||||
'postprocessors': [{
|
'postprocessors': [{
|
||||||
'key': 'FFmpegExtractAudio',
|
'key': 'FFmpegExtractAudio',
|
||||||
'preferredcodec': 'mp3',
|
'preferredcodec': 'mp3',
|
||||||
'preferredquality': '192',
|
'preferredquality': '192',
|
||||||
}],
|
}],
|
||||||
}
|
}
|
||||||
url = pm.text
|
url = pm.text
|
||||||
@ -80,11 +72,11 @@ def music_step(pm):
|
|||||||
ydl.download([id])
|
ydl.download([id])
|
||||||
send_message = "🎶 La canzone <b>" + name + "</b> è stata scaricata con successo!"
|
send_message = "🎶 La canzone <b>" + name + "</b> è stata scaricata con successo!"
|
||||||
bot.send_message(pm.chat.id, send_message, parse_mode="HTML")
|
bot.send_message(pm.chat.id, send_message, parse_mode="HTML")
|
||||||
send_music(pm)
|
bot.send_audio(pm.chat.id, audio=open(name + '.mp3', 'rb'))
|
||||||
|
|
||||||
def send_music(message):
|
#def send_music(message):
|
||||||
bot.send_audio(message.chat.id, audio=open('song.mp3', 'rb'))
|
# bot.send_audio(message.chat.id, audio=open('song.mp3', 'rb'))
|
||||||
os.remove('song.mp3')
|
# os.remove('song.mp3')
|
||||||
|
|
||||||
#Command /meteo
|
#Command /meteo
|
||||||
@bot.message_handler(commands=['meteo'])
|
@bot.message_handler(commands=['meteo'])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user