Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (56)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

Sur d’autres sites (6125)

  • Is it possible to build ffmpeg x64 on Windows ?

    15 juin 2017, par moose

    The real answer is probably "no", but still, just to double check.
    Has anyone ever been able to build ffmpeg x64 on Windows (VS2013 or VS2015) ? I know it is not possible with publicly available sources without heavy modifications. However, if somebody did it and if he is willing to share a few tips...

    Edit :
    It is interesting how most of the required x64 tools for running the "configure" are distributed without dependencies and it is impossible to get them anywhere. Looks like a professional trolling.

    Edit2 :
    There are thousands of errors like this :

    fatal error C1083: Cannot open include file: 'features.h': No such file or directory

    features.h is missing as many other header files. Is there a fix for that, or switching to Linux is the only option ?

  • extracting quantization matrix in jpeg conversion and residual error in mpeg conversion in ffmpeg ?

    31 juillet 2017, par Saeid Zangeneh

    Im not familiar with the ffmpeg source code and I’m not so professional in programming to can change or find out the code.I just want to extract quantization matrix in jpeg conversion also the residual error in mpeg conversion.

  • Loop/Batch file for extracting all .aac from .m4a files in folder

    29 décembre 2015, par MrDesperate

    I’m desperate. I need to extract the .aac stream from 1749 .m4a files with ffmpeg, but I can’t get a batch file working for me and it would take years to do it manually. This is what I use for single files : "ffmpeg -i example.m4a -vn -c:a copy example.aac"

    I don’t want to convert the files. I only want to extract the .aac audio stream (don’t wanna lose more quality).

    "ffmpeg -i *.m4a -vn -c:a copy *.aac" isn’t working and I don’t know how to use for in loops since I’m not a programmer. All loops I found on the internet aren’t working for me.

    OS : Windows 7 Professional.

    I appreciate every help.