Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (22)

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

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (3320)

  • How to include constrast+saturation filter after vidstabtransform ?

    5 décembre 2019, par esdoublelef

    In a previous question, I got help in fixing the code as stated below. However, I realize that my output file is slightly lower in contrast and saturation.

    Is there any way to append a contrast+saturation filter to the output stabilized file ?

    '" @For %%A In (*.mov)Do @(
       ffmpeg -i "%%A" -vf vidstabdetect=shakiness=8:accuracy=15:stepsize=6:mincontrast=0.4:show=2 -y -an -f null -
       ffmpeg -i "%%A" -vf vidstabtransform=smoothing=15:input="transforms.trf":interpol=linear:crop=black:zoom=0:optzoom=1,unsharp=5:5:0.8:3:3:0.4 -vcodec libx264 -tune film -y "%%~nAstabilized.mp4"
    )

    pause '"
  • Convert HLS (m3u8) to MP4 while preserving streaming gaps

    11 décembre 2019, par Tron

    I have a m3u8 file recorded from a live stream and want to convert it to a MP4 file. However, during the live stream, the broadcaster might go offline and online many times and I need to record the offline periods in the MP4. I’ve tried using ffmpeg to convert the m3u8 to MP4 using the following command

    ffmpeg -i in.m3u8 -c copy out.mp4

    However, the streaming gaps are disregarded in the output video. How can I preserve the streaming gaps using the timestamp info of the TS file and show empty content (black or white screen) during the gaps ?

  • Adding text to the video without next converting

    2 janvier 2020, par urbciech

    I have to add a short text at the beginning of the films 0:10 - 0:20. My client has a large database of 1M + movies. Currently, adding text to one movie is about 20 minutes, the reason is the conversion. Is it possible to do it faster without having to re-encode the movie ?. I came up with the idea to cut the beginning of each film 0:00 - 0:30 then add the text to this short excerpt and finally replace the beginning with a new piece of the film from with the text.

    Is there any other way to speed up this process ?