Recherche avancée

Médias (91)

Autres articles (86)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7381)

  • avformat/ty : Remove write-only array and variable

    11 août 2020, par Andreas Rheinhardt
    avformat/ty : Remove write-only array and variable
    

    Up until now, the TiVo demuxer parse an array of SEQ entries, yet it has
    never ever made any use of them. In fact, parse_master, the function
    parsing said table, only influenced the outside world in three ways : Via
    an excessive amount of error message in case a certain parameter is not
    what it expected ; via an allocation (the aforementioned write-only
    array) ; and by setting a certain parameter (ty->cur_chunk_pos), but that
    parameter is always overwritten before it is used (it is overwritten
    in get_chunk() on success and if get_chunk() fails, the error is
    returned to the caller anyway). So remove the array and the function
    used to parse it.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/ty.c
  • Creating marketing videos

    7 juin 2020, par Cengiz

    I am trying to create a marketing video with multiple images (png/jpg) after adding texts on every single image and of course with their duration. Therefor, I use several ffmpeg commands, because I am not able to do it with just one command.

    &#xA;&#xA;

    How can I define a text and a duration for every image before adding it to the video ?

    &#xA;&#xA;

    My example batch file :

    &#xA;&#xA;

     !/bin/bash

    &#xA;&#xA;

    echo "[Start]"&#xA;ffmpeg \&#xA; -i '01.jpg' \&#xA; -vf drawtext="\text='Stack Overflow' : fontcolor=white : fontsize=24 : box=1 : boxcolor=black@0.9 : boxborderw=5 : x=(w-text_w)/2 : y=(h-text_h)/2" \&#xA; -codec:a copy \&#xA; -y 'out-a.mp4'&#xA;ffmpeg \&#xA; -i '02.jpg' \&#xA; -vf drawtext="\text='Another Text' : fontcolor=white : fontsize=24 : box=1 : boxcolor=black@0.9 : boxborderw=5 : x=(w-text_w)/2 : y=(h-text_h)/2" \&#xA; -codec:a copy \&#xA; -y 'out-b.mp4'&#xA;ffmpeg \&#xA; -i '03.jpg' \&#xA; -vf drawtext="\text='Hello World' : fontcolor=white : fontsize=24 : box=1 : boxcolor=black@0.9 : boxborderw=5 : x=(w-text_w)/2 : y=(h-text_h)/2" \&#xA; -codec:a copy \&#xA; -y 'out-c.mp4'&#xA;ffmpeg \&#xA; -i out-*.mp4 \&#xA; -vf scale=768x420 \&#xA; -c:v libx264 \&#xA; -r 30 \&#xA; -pix_fmt yuv420p \&#xA; -y 'output.mp4'&#xA;echo "[End]"

    &#xA;&#xA;

    Thanks to all&#xA;Cengiz

    &#xA;

  • Does ffmpeg support clip feature in ass with subtitle filter ?

    14 mars 2019, par neonew

    I want to use clip/iclip feature in ASS with ffmpeg to display the subtitles one by one. Below is my ASS file content :

    [Script Info]  
    ScriptType: v4.00+  
    WrapStyle: 0  
    ScaledBorderAndShadow: yes  
    PlayResX: 1000  
    PlayResY: 560  
    [V4+ Styles]  
    Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding  
    Style: Default,FZLanTingHei-R-GBK,24,&amp;H000000,&amp;H00FF0000,&amp;H00000000,&amp;H00000000,0,0,0,0,100,100,0,0,2,0,0,1,0,0,0,1  
    [Events]  
    Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text  
    Dialogue: 0,0:00:00.00,0:00:02.00,Default,,0000,0000,0000,,{\pos(717,91)\iclip(717,91,1000,191)\t(0,1000,\iclip(1000,91,1000,191))}Hello World!

    ffmpeg command :

    ffmpeg -i input.mp4 -filter_complex "subtitles=myass.ass" output.mp4

    However, the text just appeared two seconds, but didn’t have clip feature.
    So, is there something wrong ?