Recherche avancée

Médias (91)

Autres articles (60)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

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

Sur d’autres sites (9219)

  • Merge commit '883ce264d9ffc5bdaf477e09ee155b03339c46a6'

    23 octobre 2017, par James Almer
    Merge commit '883ce264d9ffc5bdaf477e09ee155b03339c46a6'
    

    * commit '883ce264d9ffc5bdaf477e09ee155b03339c46a6' :
    vf_showinfo : Display spherical properties

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/vf_showinfo.c
  • Merge commit ’bcc07e2576cb723007bea1238afd019ae2d1b005’

    9 juillet 2016, par Clément Bœsch
    Merge commit ’bcc07e2576cb723007bea1238afd019ae2d1b005’
    

    * commit ’bcc07e2576cb723007bea1238afd019ae2d1b005’ :
    pixdesc : Use C99 array to list color properties names

    Merged-by : Clément Bœsch <u@pkh.me>

    • [DH] libavutil/pixdesc.c
  • Linux, Eclipse C++, how to connect ffmpeg libs to your project ?

    16 juin 2012, par Blender

    So I downloaded FFmpeg from svn. Compiled and installed into system. in /usr/local it created ./lib and ./include. one with includes and one with libs in form of *.a files.

    I downloaded eclipse Helios for C++ and created new simple project. I included ffmpeg headers into my C++ file. in project properties in C/C++Build in settings I declared ffmpeg libs (Library search path was declared)

    I wrote some simple code that calls functions from headers.

    But for all ffmpeg functions I used it gave me errors of eclipse not seeing ffmpeg.

    So I wonder - how to connect ffmpeg libs to my project (or may be there is any way to compile ffmpeg not into .a and it would work with .so) ?