Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (20)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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

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

  • FFMPEG.How to get audio stream from video and save it to disk on C++ [on hold]

    27 avril 2018, par Pein

    I’ve found information about how to save video frames to the disk, but how to work with audio stream I can’t find any useful information. Maybe someone knows how to get the audio stream from video and save it to the disk

  • x86 : hevc_mc : save 1 gpr in epel filter loading

    7 février 2015, par Christophe Gisquet
    x86 : hevc_mc : save 1 gpr in epel filter loading
    

    The 3*stride value stored in r3src can be loaded much later,
    so use r3src instead of a dedicated gpr when possible.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/x86/hevc_mc.asm
  • Crop video by frame and save output as video

    3 avril 2018, par D_Corson

    I’m trying to resolve a question I had posted earlier (trying to only use FFMPEG) and am still stuck and hoping someone else has a solution.

    I have a video that I want to crop frame by frame with a varying locations to extract a region of interest. I can currently do this using moviepy which has been excellent, but I would like to try and solve this using only FFMPEG. The added constraints are that I would like to be able to crop the frame and put this in a new video without having to save the cropped images locally and compiling them.

    Thanks