Recherche avancée

Médias (91)

Autres articles (28)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (4546)

  • mss2 : do not try to read too many palette entries

    3 septembre 2012, par Alberto Delmás

    mss2 : do not try to read too many palette entries

  • Simplify setting colour space for mono* when encoding tiff.

    31 août 2012, par Carl Eugen Hoyos

    Simplify setting colour space for mono* when encoding tiff.

  • Set background colour when converting flv to mp4 with ffmpeg

    28 août 2012, par Castles

    I'm attempting to convert flv files (with an alpha channel) that are uploaded to a server to html5 compatible formats. I've got the conversion working but the transparency is rendered as black. What I would like to do is have the ability to specify a colour.

    Is it possible to convert the video and specify the colour ?

    Alternatively, am I able to overlay the video with transparency on a still image that I generate ?

    Update
    I may of solved my own question... Here is my ffmpeg command :

    `ffmpeg -loop_input -f image2 -i background.png -r 25 -t 10 -an -level 21 -refs 2 -b 345k -bt 345k -acodec libfaac -vcodec libx264 -ac 2 -ab 96k -ar 44100 -vf "movie=input.flv, scale=370:500 [logo]; [in][logo] overlay=0:0 [out]" -y -threads 0 output.mp4`

    Which works.. I just need to generate a background image at the right dimensions on the server before converting.