Recherche avancée

Médias (91)

Autres articles (34)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version 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
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

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

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (6880)

  • avformat/mov : Correct opus-in-mp4 pre-skip to be uint16_t versus int16_t.

    22 août 2018, par Dale Curtis
    avformat/mov : Correct opus-in-mp4 pre-skip to be uint16_t versus int16_t.
    

    This field is a uint16_t, see docs :
    http://opus-codec.org/docs/opus_in_isobmff.html#4.3.2

    Signed-off-by : Dale Curtis <dalecurtis@chromium.org>
    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c
  • How can I use ffmpeg to convert SRT subtitle files to ASS and adjust the font size and color ?

    15 mai 2020, par S. Park

    I have been using Aegisub to export SRT files as ASS and apply specific appearance settings, but this is tedious when you have to process many SRT files. Is there a better way to do this via the command line with ffmpeg ?

    &#xA;&#xA;

    Note that I am working with soft subs and do not want to hard sub/encode the subtitles into the video files.

    &#xA;&#xA;

    This is the command I tried to use, but it doesn't work. The SRT is converted to ASS but without any of the specified appearance settings.

    &#xA;&#xA;

    ffmpeg -i mysubs.srt -filter "subtitles=mysubs.srt:force_style=&#x27;Fontname=Helvetica,Fontsize=16,PrimaryColour=&amp;H23EEF1&amp;,BackColour=&amp;H000000&amp;,BorderStyle=3,Outline=3,Shadow=0,Alignment=2,MarginL=10,MarginR=10,MarginV=10,Encoding=0&#x27;" mysubs.ass&#xA;

    &#xA;

  • How to Burn Subtitle (SRT) file and Timecode in FFMpeg

    4 avril 2016, par Rahul Prasad

    I am trying to burn (hardcode) an SRT file and a timecode value to a MP4 file, but to no avail.

    I am currently burning the srt and timecode using the below commands :

    Burn SRT

    ffmpeg -i input.mp4 -vf subtitles=subs.srt out.mp4

    Burn Timecode

    ffmpeg -i input.mp4  -filter_complex "drawtext=fontfile=/Windows/Fonts/arial.ttf:x=320:y=main_h-50:fontsize=32:fontcolor='white':timecode='00\:00\:00\:00':rate=29.97" -y output.mp4

    However, I am not able to combine the two into a single command as ffmpeg does not allow usage of -vf and -filter_complex together.

    Is there a workaround ?