Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (105)

  • 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

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

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (7180)

  • spherical : Add tiled equirectangular type and projection-specific properties

    10 février 2017, par Vittorio Giovara
    spherical : Add tiled equirectangular type and projection-specific properties
    

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] doc/APIchanges
    • [DH] ffprobe.c
    • [DH] libavformat/dump.c
    • [DH] libavutil/spherical.c
    • [DH] libavutil/spherical.h
    • [DH] libavutil/version.h
    • [DH] tests/ref/fate/matroska-spherical-mono
    • [DH] tests/ref/fate/mov-spherical-mono
  • FFmpeg returns' Output must be specified' when it has been acknowledged

    28 juillet 2019, par Syed Shah

    Here’s my command in python :

    ffmpeg -i concat:803.ts|804.ts|805.ts -c copy output.ts

    When I run the command it opens the output but it doesn’t save the file to the directory.
    I run the command in FFmpeg and it gave the same result - it opened the output but it gave me this error at the end :

    At least one output file must be specified

    I don’t understand what I did wrong as I specified the output clearly, I already checked for solutions but most of them are suited to OP’s needs

  • Filter "showpalette" of FFmpeg always returns the default palette

    19 mai 2017, par Vej

    I want to extract palette of GIF files with FFmpeg, and learned from the document that filter "showpalette" can do that. But FFmpeg always returns the same default palette instead of the custom palette.

    default palette

    FFmpeg returns the same palette even for the two examples in pkh.me’s Post. Here’s my code :

    ffmpeg -i bbb-trans.gif -vf "showpalette" -y a%03d.png
    ffmpeg -i bbb-nodither.gif -vf "showpalette" -y b%03d.png

    Did I use the wrong command ? Or it’s a just bug of FFmpeg.