Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

Sur d’autres sites (7734)

  • tests/ref/fate/nuv-rtjpeg : Preserve the original timestamps

    30 mai 2019, par Michael Niedermayer
    tests/ref/fate/nuv-rtjpeg : Preserve the original timestamps
    

    The tests previously rounded the timestamps. Its better in a fate test to preserve
    the data from the demuxer and decoder.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/fate/video.mak
    • [DH] tests/ref/fate/nuv-rtjpeg
  • hlsenc : write playlist into a temp file and replace the original atomically

    20 février 2015, par Hendrik Leppkes
    hlsenc : write playlist into a temp file and replace the original atomically
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/hlsenc.c
  • Using ffmpeg to print onto video clip actual time and duration from original clip

    24 mai 2023, par Kes

    I am using arch linux and bash and ffmpeg, all are up to date and the latest versions.

    &#xA;

    I am clipping a video that is 30 seconds long and wish to clip from 5 secs to 10 seconds to a new file, from the original.

    &#xA;

    In the bottom right hand corner of the clip I wish to show timestamps from the original video as follows

    &#xA;

      &#xA;
    • in the 5th second "00:00:05/ 00:00:30"
    • &#xA;

    • in the 6th second "00:00:06/ 00:00:30"
      &#xA;etc
    • &#xA;

    • in the 10th second "00:00:10/ 00:00:30"
    • &#xA;

    &#xA;

    This is an apparentley simple question(?) but the syntax of the command is not at all obvious and I am hoping an expert may shed some light on this.

    &#xA;

    All I have so far for the drawtext part, which does not do what I want as it only counts the elapsed time from t=0 of the clip, whereas I want it to show the timestamp and total duration of the original clip

    &#xA;

    drawtext I started with

    &#xA;

    "drawtext=text=&#x27;%{pts\:gmtime\:0\:%M\\\\\:%S}&#x27;:fontsize=24:fontcolor=black:x=(w-text_w-10):y=(h-text_h-10)"&#xA;

    &#xA;

    ffmpeg line with drawtext I have started with

    &#xA;

    ffmpeg -ss 00:00:05 -i  "$in_file" -filter_complex "drawtext=fontfile=font.ttf:text=&#x27;sample text&#x27;:x=10:y=10:fontsize=12:fontcolor=white:box=1:boxcolor=black@0.5:boxborderw=5,drawtext=text=&#x27;%{duration\:hms}&#x27;:fontsize=12:fontcolor=black:x=(w-text_w-10):y=(h-text_h-10)" -t 5 -c:a copy -c:v libx264 out_file.mp4&#xA;

    &#xA;