
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (69)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (12158)
-
FFmpeg play audio stream on a browser
9 mars 2017, par tiras muturiHey guys i have a live stream that is served by the ffserver but i want the stream to be playable on a browser since i have a website and i also want to play the stream in an android app. Most importantly the android device.
i want if i type this on a browser then i can be able to listen to the stream there and then.
http://localhost:8090/test1.mp3
if i put the link in vlc am able to receive the stream.
Anyone with this workaround please assist me.
-
FFmpeg play audio stream on a browser
15 juillet 2017, par tiras muturiHey guys i have a live stream that is served by the ffserver but i want the stream to be playable on a browser since i have a website and i also want to play the stream in an android app. Most importantly the android device.
i want if i type this on a browser then i can be able to listen to the stream there and then.
http://localhost:8090/test1.mp3
if i put the link in vlc am able to receive the stream.
Anyone with this workaround please assist me.
-
Make Discord bot play sound from a direct url
20 septembre 2020, par merctraiderI want to make a discordpy bot that plays audio files from a specific link on the internet, rather than from a local directory. It seems that all the other examples use ytdl, but those are for video streaming sites. How should I go about doing this ?


if(voice_channel != None):
 vc = await voice_channel.connect()

 vc.play(discord.FFmpegPCMAudio('http://website/001.mp3'), after=lambda e: print('done', e))
 else:
 await ctx.send("Join a voice channel first.")```