Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (112)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

Sur d’autres sites (8155)

  • FFMPEG zoom-pan multiple images

    19 janvier 2019, par basim

    I am trying to stitch multiple images with some zoom-pan happening on the images to create a video.

    Command :-

    ffmpeg -f lavfi -r 30 -t 10 -i \
    color=#000000:1920x1080 \
    -f lavfi \
    -r 30 -t 10 \
    -i aevalsrc=0 \
    -i "image-1.png" \
    -i "image-2.png" \
    -y -filter_complex \
    "[0:v]fifo[bg];\
    [2:v]setpts=PTS-STARTPTS+0/TB,scale=4455:2506:force_original_aspect_ratio=decrease,zoompan=z='min(zoom+0.0015,2.5)':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)':d=150:fps='30':s='1920x1080'[v2];\
    [bg][v2]overlay=0:0:enable='between(t,0, 5)'[bg];\
    [3:v]setpts=PTS-STARTPTS+5.07/TB,scale=3840:2160:force_original_aspect_ratio=decrease,zoompan=z='min(zoom+0.0015,2.5)':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)':d=150:fps='30':s='1920x1080'[v3];\
    [bg][v3]overlay=0:0:enable='between(t,5, 10)'[bg];\
    [1:a]amix=inputs=1:duration=first:dropout_transition=0" \
    -map "[bg]" -vcodec "libx264" -preset "veryfast" -crf "15" "output.mp4"

    The output is not as expected, it only zooms only on the first image, the second image is just static.

    FFMPEG version - 4.1

  • avcodec/pngdec : consider chunk size in minimal size check

    22 juillet 2019, par Michael Niedermayer
    avcodec/pngdec : consider chunk size in minimal size check
    

    assuming each block contains an empty chunk there has to be at least 8 bytes extra.

    Fixes : 15327/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LSCR_fuzzer-5676669303521280
    Fixes : Timeout (11->5sec)

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/pngdec.c
  • Converting AC3 to AAC with minimal loss [on hold]

    20 juin 2016, par forthrin

    iPad does not seem to support the ac3 audio codec.

    Therefore, I am converting an mkv/h264/ac3 movie into m4v/m264/aac using ffmpeg to view it on the iPad.

    The video part is simply copied as it is ; my question is how I preserve the audio as best possible.

    1. Is there any way to do the audio conversion losslessly ?

    2. If no to question 1, what is the best way to preserve the audio quality ? If the source audio is 192 kb/s and 48000 Hz, should I simply use 192/48000 for the target too ? Or will I preserve the audio better if I increase the the bit rate somewhat ?

    3. Side question : I noticed that a lot of mkv files have rather poor audio to begin with. Will the loss of ac3/aac re-encoding be negligable compared to the initial quality loss from the source material ? And why isn’t high audio quality more of a priority for movie files ? It’s not like file sizes matter much anymore with today’s storage and bandwidth.