Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (94)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (7811)

  • 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;