
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (96)
-
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (8169)
-
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