Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (37)

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

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

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

Sur d’autres sites (5211)

  • avcodec/vp56 : Reset have_undamaged_frame on resolution changes

    9 mars 2017, par Michael Niedermayer
    avcodec/vp56 : Reset have_undamaged_frame on resolution changes
    

    Fixes : timeout in 758/clusterfuzz-testcase-4720832028868608

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

    • [DH] libavcodec/vp56.c
  • avcodec/vp6 : clear dimensions on failed resolution change in vp6_parse_header()

    12 mars 2017, par Michael Niedermayer
    avcodec/vp6 : clear dimensions on failed resolution change in vp6_parse_header()
    

    Fixes : 807/clusterfuzz-testcase-6470061042696192
    Fixes null pointer dereference

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

    • [DH] libavcodec/vp6.c
  • FFmpeg- Concat videos with unknown resolution/frame size/rate etc

    21 mars 2017, par Karandeep Atwal

    On android platform, I am using this library for concatenating videos.
    For mp4 files with Same Properties like frame-size,resolution etc. I have succeeded concatenating by this command-

    -f concat -safe 0 -i inputfile.txt -codec copy Outputfile

    where inputfile.txt contains-

    file /storage/emulated/0/demo/vid1.mp4
    file /storage/emulated/0/demo/vid2.mp4
    file /storage/emulated/0/demo/vid3.mp4
    file /storage/emulated/0/demo/vid4.mp4

    But, this command only works if input video files have SAME Properties eg. videos made from camera app.If we add other mp4 videos to the input eg. Whatsapp Videos, then I got corrupted Output. It is described here.

    I have read about Concat-Filter ,But this is not working in my case giving me errors like Media-mismatch asked here, different SAR value,frame-size etc. doesn’t match. I also used this Command but it takes about three hours for 25Mb & 5Mb video.

    I want to choose as many random videos from storage and want to concat them. I also think of converting every chosen video to same bitrate, same frame size, same aspect ratio, but it is time-consuming.

    What would be the Best Way to Concat videos of unknown type using ffmpeg commands ?