Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (96)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang 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, par

    Cette 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 2011

    MediaSPIP 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 user2523824

    I 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>&amp;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 Xie

    I want to play RTMP video by using LibRTMP not FFmpeg, because FFmpeg build is so big and LibRTMP just can play RTMP stream. The color encoding is YUV420P, my solution is to draw images frame by frame.

    So the Question is HOW to convert YUB420P to RGB and play RTMP video ?

  • ctx.voice_client.play not doing anything

    15 février 2021, par SYCK playz

    I 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.
    &#xA;I have tried the following :

    &#xA;

    ctx.voice_client.play(source=discord.FFmpegPCMAudio(&#x27;song0.mp3&#x27;))&#xA;

    &#xA;

    ctx.voice_client.play(source=discord.FFmpegPCMAudio(&#x27;song0.mp3&#x27;, executable=&#x27;path/to/ffmpeg.exe&#x27;))&#xA;

    &#xA;

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

    &#xA;

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

    &#xA;

    None of them work

    &#xA;