Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (105)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • avcodec/videotoolboxenc : add H264 Extended profile and level

    20 août 2019, par Limin Wang
    avcodec/videotoolboxenc : add H264 Extended profile and level
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] libavcodec/videotoolboxenc.c
  • avcodec : Add more kCVImageBufferColorPrimaries to videotoolboxenc

    3 novembre 2019, par Nomis101
    avcodec : Add more kCVImageBufferColorPrimaries to videotoolboxenc
    

    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] libavcodec/videotoolboxenc.c
  • avcodec/videotoolboxenc : fix encoding frame crash on iOS 11

    13 août 2019, par sharpbai
    avcodec/videotoolboxenc : fix encoding frame crash on iOS 11
    

    On iOS 11, encoding a frame may return error with log
    "Error encoding frame 0", which means vtenc_output_callback
    is called with status=0 and sample_buffer=NULL. Then the
    encoding session will be crashed on next callback wether or not
    closing the codec context.

    Let us look through the link below introducing VTCompressionOutputCallback,

    https://developer.apple.com/documentation/videotoolbox/vtcompressionoutputcallback?language=objc

    "status=0" (noErr) means compression was successful.
    "sampleBuffer=NULL" means the frame was dropped when compression
    was successful (status=0) or compression was not successful (status !=0).

    So we should not set AVERROR_EXTERNAL on "status=0" and "sample_buffer=NULL"
    as it is not a error.

    The fix is that we only set AVERROR_EXTERNAL with status value non zero.
    When sample_buffer is NULL and status value is zero, we simply return
    with no other operation.

    This crash often occurs on iOS 11 for example encoding 720p@25fps.

    Signed-off-by : sharpbai <sharpbai@gmail.com>
    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] libavcodec/videotoolboxenc.c