Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (54)

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

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (5818)

  • ffmpeg video + watermark + replace audio not working

    25 juin 2014, par user3679718

    I’ve got the following command :

    ffmpeg -ss 00:00:30 -i "$i" -i ../audio.mov -map 0:0 -map 1:0 -to 30 -vf "fade=in:0:24, fade=out:624:24" "../outputFiles/${i%MTS}mp4"

    that works, but doesn’t work when added watermark :

    ffmpeg -ss 00:00:30 -i "$i" -i ../watermark.png -filter_complex 'overlay=40:20' -i ../audio.mov -map 0:0 -map 1:0 -to 30 -vf "fade=in:0:24, fade=out:624:24" "../outputFiles/${i%MTS}mp4"

    On the other hand, I can convert video with watermark, without audio input.

    Do I need to do them separately, or am I doing something wrong ?

    Thanks !

  • FFmpeg : Add watermark without changing the quality [on hold]

    23 mai 2014, par user3624875

    I’m using ffmpeg on Ubuntu to add a watermark.png in a video. but, after adding, video quality goes down.
    Here is my code that is adding watermark.

    ffmpeg -y -i input.mp4 -i watermark.png -filter_complex 'overlay=W-w-1:0' output.mp4 2>&1

    What I want, keep the quality of input.mp4 as it is, in output.mp4
    Quality may include Video/Audio Codec, Bitrate etc etc.

  • Video ts watermark png with ffmpeg

    22 mai 2014, par fabian

    Is there any way to add watermark png file to ts video file with ffmpeg ?
    (Windows)

    (I tried multiple commands lines from forums but no ones seems to be right.)

    Thanks