Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (93)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (11297)

  • Android and ffmpeg. Play video (with sound)

    18 février 2014, par bukka.wh

    I have compiled ffmpeg library add it to my project and now I want to play video (with full list of options - stop, pause, forward, backward etc). I have read roman10 ffmpeg tutorial. And I also find out tutorial which describes how play video with ffmpeg and SDL framework. The difference (if I have correctly understood) is that in roman's tutorial each frame of video turns into a Bitmap and is then passed to Java code where it shows on SurfaceView. And in the second tutorial, the video is playing with the help of the SDL framework without passing it back to Java code.

    I want to ask some questions :

    1. Which way is better : return Bitmap back to Java and show it on SurfaceView or play it with SDL ?
    2. How can I play the sound of my video (can I do it with ffmpeg or do I need some additional libraries) ?
  • 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 ?