Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (83)

  • 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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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 (...)

Sur d’autres sites (14468)

  • all : fix enum definition for large values

    23 octobre 2015, par Ganesh Ajjanagadde
    all : fix enum definition for large values
    

    ISO C restricts enumerator values to the range of int. Thus (for instance) 0x80000000
    unfortunately does not work, and throws a warning with -Wpedantic on
    clang 3.7.

    This fixes it by using alternative expressions that result in identical
    values but do not have this issue.

    Tested with FATE.

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavcodec/dca_syncwords.h
    • [DH] libavformat/cinedec.c
    • [DH] libavformat/mov_chan.c
  • Converting large number of MP3 files to videos for YouTube, each using same JPG

    2 juin 2020, par David

    Looking for a way to convert large number of mp3 files to videos each using the same image. Efficient processing time is important.

    &#xA;&#xA;

    Tried following :

    &#xA;&#xA;

    ffmpeg -i image.jpg -i audio.mp3 -vcodec libx264 video.mp4&#xA;

    &#xA;&#xA;

    VLC played the resulting video file with the correct sound, but blank screen.&#xA;Microsoft Media Player played the sound and showed the intended image.&#xA;Uploaded the video to YouTube and received mesage "The video has failed to process. Please make sure you are uploading a supported file type."

    &#xA;&#xA;

    Would appreciate advice on how to make this work.

    &#xA;

  • Issue in displaying Large Video Files in MedisElement using ASP.NET JQuery

    13 novembre 2015, par SarahN

    There are some large .Mp4 files encoded with FFmpeg in another
    project .

    I use MediaElement.js to display the video for user (look after the video name in another server, copy it into a Webserver location , and play it) .
    for larger video files, they Cant be played . Does it mean MediaElement load whole Video file , and then play them ?
    What should I do for buffering separate section , to avoid this issue ?

    This is the code I use :

      if ($('#player1')) {
           player = new MediaElementPlayer("#player1",
                 {
                   //...
                   alwaysShowControls: true,
                   success: function(mediaElement, domObject) {
                          mediaElement.play();
                                                              }
                 });
           }

    I found this link MediaElement.js - Flash Video Wont Play Until Fully Loaded , I ’m not sure if its useful for me or not ?

    Please let me know if any solution comes into your mind, Thanks .