Recherche avancée

Médias (91)

Autres articles (35)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (5855)

  • checkasm : Disable Windows Error Reporting

    7 février 2016, par Henrik Gramner
    checkasm : Disable Windows Error Reporting
    

    When developing new assembly code it’s expected that checkasm may crash,
    and the error reporting dialog popup can be somewhat annoying.

    • [DH] tools/checkasm.c
  • FFMPEG Batch Convert for Windows

    29 avril 2017, par Ash_dog

    I’ve been trying to convert entire folders of files using ffmpeg for a long time now. I’ve searched the web, found various answers, but none that helped me. Currently I’m using multiple instances of ffmpeg to convert more than one file at a time. But it’s very time consuming and annoying to type in everything all the time, even with copy/paste.

    To simplify my current code it would look something like this. I specify the input file and the output format (+ various settings) :

    ffmpeg -i "EXAMPLE.avi" newEXAMPLE.mp4

    But what I would like is a single instance of ffmpeg to convert all files in a specific folder to a new format and for the files to keep their original name.

    example1.avi > example1.mp4

    example2.avi > example2.mp4

    example3.avi > example3.mp4

    and so on...

    PS. I’m a bit new to these kind of things, so I’d much appreciate an explanation with your answer, so I can understand and learn. Thank you !

  • examples/Makefile : disable -O2 optimizations

    26 juin 2013, par Stefano Sabatini
    examples/Makefile : disable -O2 optimizations
    

    There is no much point in optimizing example code, and the -O2 flag is
    annoying when debugging.

    • [DH] doc/examples/Makefile