
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (96)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (8579)
-
Cannot play the video encoded using ffmpeg command [on hold]
26 juin 2013, par user2523824I have been struggling to play the videos encoded using ffmpeg command in PHP.
Please see the URL
The JW Player doesn't work on the Firefox 21.0 for Windows7 64 Bit.
And also,
Sometimes, When I upload any video and encode by ffmpeg command, some of the videos doesn't be play on the Chrome, IE9/10.
Here is the ffmpeg command to encode.<code>
//////////////////I tried the command in PHP//////////////////////
$cmd = "ffmpeg -y -i original.wmv -vcodec libx264 -crf 25 -pix_fmt yuv420p -acodec libfaac new.mp4 > /dev/null 2>&1";
echo shell_exec($cmd);
//////////////////////////////////////////////////////////////////How do I have to implement the ffmpeg command to play within all the browser ?
Please help me.Kind regards
Niao Jina -
How to play RTMP video by using LibRTMP, not FFmpeg ?
28 avril 2014, par Smeegol XieI want to play
RTMP
video by usingLibRTMP
notFFmpeg
, becauseFFmpeg
build is so big and LibRTMP just can playRTMP
stream. The color encoding isYUV420P
, my solution is to draw images frame by frame.So the Question is HOW to convert
YUB420P
to RGB and playRTMP
video ? -
ctx.voice_client.play not doing anything
15 février 2021, par SYCK playzI am trying to make a music bot. The bot connects to the voice channel I am in but it doesn't play anything. The
ctx.voice_client.play
does nothing. There is no error.

I have tried the following :

ctx.voice_client.play(source=discord.FFmpegPCMAudio('song0.mp3'))



ctx.voice_client.play(source=discord.FFmpegPCMAudio('song0.mp3', executable='path/to/ffmpeg.exe'))



ctx.voice_client.play(source=discord.FFmpegPCMAudio('song0.mp3', executable='path/to/ffmpeg.exe', before_options = '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', options = '-vn'))



ffmpeg_options = {'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', 'options': '-vn'}
ctx.voice_client.play(source=discord.FFmpegPCMAudio('song0.mp3', executable='path/to/ffmpeg.exe', **ffmpeg_options))



None of them work