Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (70)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12966)

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

  • avcodec/cbs_av1 : Fix writing uvlc numbers >= INT_MAX

    18 juin 2020, par Andreas Rheinhardt
    avcodec/cbs_av1 : Fix writing uvlc numbers >= INT_MAX
    

    Fixes : assertion failure
    Fixes : left shift of 1 by 31 places cannot be represented in type 'int'
    Fixes : 23264/clusterfuzz-testcase-minimized-ffmpeg_BSF_AV1_METADATA_fuzzer-6308429248593920

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/cbs_av1.c