Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (49)

  • 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

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

Sur d’autres sites (8449)

  • Merge commit ’6d3ea1957f681b3bf9c752e6d21a501cc8d4180d’

    16 décembre 2013, par Michael Niedermayer
    Merge commit ’6d3ea1957f681b3bf9c752e6d21a501cc8d4180d’
    

    * commit ’6d3ea1957f681b3bf9c752e6d21a501cc8d4180d’ :
    Bump major of libavfilter for reference counted buffer API changes.

    Conflicts :
    libavfilter/version.h

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/APIchanges
    • [DH] libavfilter/version.h
  • avutil/fifo : delay addition of const from 78d3453c4a2efef9bc079e8f3458653beafcf990...

    14 mai 2014, par Michael Niedermayer
    avutil/fifo : delay addition of const from 78d3453c4a2efef9bc079e8f3458653beafcf990 until next major ABI bump
    

    This unbreaks API, for example audacity has more build errors due to this

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/fifo.c
    • [DH] libavutil/fifo.h
  • ffmpeg to embed subtitles [closed]

    29 octobre 2023, par zanoth

    Intend to collect some stuff for academical purpose, to introduce in a seminary.&#xA;Attempting to embed subtitles in the frames of a mp4 file, below some commands that i've been tried out :

    &#xA;

    ffmpeg -i input.mp4 -vf subtitles=subt.srt output.mp4 &#xA;&#xA;ffmpeg -i VID_20230918_161450.mp4  -f srt -i subtitles1.srt -map 0:0 -map 0:1 -c:v copy -c:a copy -c:s mov_text output.mp4&#xA;&#xA;ffmpeg -i seu_video.mp4 -vf "subtitles=seu_arquivo.srt" -c:v libx264 -c:a aac -strict experimental -b:a 192k -y seu_video_com_legendas.mp4&#xA;

    &#xA;

    ...according to the major issues/responses/or "oracles" around the web.

    &#xA;

    With the first one, i got as response :

    &#xA;

    &#xA;

    [AVFilterGraph @ 0x557e87157240] No such filter : 'subtitles1.srt' < br/> > Error reinitializing filters !

    &#xA;

    &#xA;

    The second creates the output.mp4 but it comes without subtitles.

    &#xA;

    The third, surprisingly, was well succed, for a moment. I will explain :&#xA;as i'd to translate the video, I wanted to conduct some tests... At the first, the mp4 had a little more than few seconds, which was well succed. Calling the purposed video, it brokes :

    &#xA;

    &#xA;

    [Parsed_subtitles_0 @ 0x558e29010280] Unable to open subtitles1.srt

    &#xA;

    &#xA;

    ...subtitles.srt which is exatcly the same file tried firstly.

    &#xA;

    "Phantonessly", both of they, the test and the purposed video ones, doens't work anymore.

    &#xA;

    I made up some changes here and there, but for summarize is it.&#xA;The SRT file have none syntax erros, as you can see :

    &#xA;

    &#xA;

    1
    &#xA;0:0:0.000 —> 0:3:0.000
    &#xA;test, teste, teste, á ?

    &#xA;

    &#xA;

    It's for academical purposes.

    &#xA;

    Thanks.

    &#xA;