Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (50)

  • 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 ;

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

  • 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

Sur d’autres sites (5420)

  • avcodec/cfhd : Replace a few literal numbers by named constants

    29 août 2020, par Michael Niedermayer
    avcodec/cfhd : Replace a few literal numbers by named constants
    

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cfhd.c
    • [DH] libavcodec/cfhd.h
  • How to trim video by multiple frame numbers then concatenate using FFMPEG

    31 août 2020, par puneet18

    Using following code, I'm able to trim video by time :

    &#xA;

    ffmpeg -i input.mp4 -filter_complex \&#xA;"[0:v]trim=60:65,setpts=PTS-STARTPTS[v0]; \&#xA; [0:a]atrim=60:65,asetpts=PTS-STARTPTS[a0]; \&#xA; [0:v]trim=120:125,setpts=PTS-STARTPTS[v1];&#xA; [0:a]atrim=120:125,asetpts=PTS-STARTPTS[a1]; \&#xA; [v0][a0][v1][a1]concat=n=2:v=1:a=1[out]" \&#xA;-map "[out]" output.mp4&#xA;

    &#xA;

    Above code trim video from 60-65 sec & 120-125sec then concatenate in output.mp4 file.

    &#xA;

    Need to know how to trim video by using frame number and concatenate.

    &#xA;


    &#xA;

    Is it possible to get the time by using Frame Number and fps ?

    &#xA;

    frame_1_start = 100 #Frame Number&#xA;frame_1_end   = 200 #Frame Number&#xA;frame_2_start = 450 #Frame Number&#xA;frame_3_end   = 700 #Frame Number&#xA;fps = 20 # Frame per second&#xA;&#xA;time_x_1 = frame_1_start/fps&#xA;time_x_2 = frame_1_end/fps&#xA;time_y_1 = frame_2_start/fps&#xA;time_y_2 = frame_2_end/fps&#xA;&#xA;ffmpeg -i input.mp4 -filter_complex \&#xA;"[0:v]trim=#{time_x_1}:#{time_x_2},setpts=PTS-STARTPTS[v0]; \&#xA; [0:a]atrim=#{time_x_1}:#{time_x_2},asetpts=PTS-STARTPTS[a0]; \&#xA; [0:v]trim=#{time_y_1}:#{time_y_2},setpts=PTS-STARTPTS[v1];&#xA; [0:a]atrim=#{time_y_1}:#{time_y_2},asetpts=PTS-STARTPTS[a1]; \&#xA; [v0][a0][v1][a1]concat=n=2:v=1:a=1[out]" \&#xA;-map "[out]" output.mp4&#xA;

    &#xA;

  • Does FFMpeg random generates identical sequences of pseudo-random numbers for consecutive executions ?

    20 août 2020, par justew

    For example if I execute command twice :

    &#xA;

    ffmpeg -i input.mp4 -vf geq=r=&#x27;random(1)*255&#x27;:g=&#x27;random(1)*255&#x27;:b=&#x27;random(1)*255&#x27; -strict -2 output.mp4

    &#xA;

    For the same source file, I have identical output files. Why ? I want to get different output files.

    &#xA;

    Testing configuration :

    &#xA;

    ffmpeg version 2.8.17-0ubuntu0.1 Copyright (c) 2000-2020 the FFmpeg developers&#xA;  built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.12) 20160609&#xA;

    &#xA;

    I suppose that's because randomizer start value is identical. Does ffmepg have function like srand ?

    &#xA;

    More specifically I want to add random noise just like this : noise=alls=20:allf=p&#x2B;t&#x2B;u. But if I try do so I got the same noise for different executions on the same input file.

    &#xA;