Recherche avancée

Médias (91)

Autres articles (53)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9884)

  • h264 : check that execute_decode_slices() is not called too many times

    28 novembre 2013, par Anton Khirnov
    h264 : check that execute_decode_slices() is not called too many times
    

    Fixes invalid reads.

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC:libav-stable@libav.org

    • [DBH] libavcodec/h264.c
  • Revision c0214e7155 : Cache loop filter errors. This avoids fitlering a frame multiple times at the s

    25 janvier 2014, par Alex Converse

    Changed Paths :
     Modify /vp9/encoder/vp9_picklpf.c



    Cache loop filter errors.

    This avoids fitlering a frame multiple times at the same level.

    Change-Id : I1fd54dd7ea257d16da8569f48036b8fad3a3ed61

  • FFmpegFrameRecorder calls record() 20 times but the resulting mp4 file only has 2 frames

    8 janvier 2015, par Long_Le

    I’m using FFmpegFrameRecorder to create mp4(H264) video from camera preview. My recorder configuration is as follows.

    recorder = new FFmpegFrameRecorder(filePath, width, height);
    recorder.setVideoCodec(avcodec.AV_CODEC_ID_H264);
    recorder.setFormat("mp4");
    recorder.setFrameRate(VIDEO_FPS);
    recorder.setVideoBitrate(16384);
    recorder.setPixelFormat(avutil.AV_PIX_FMT_YUV420P);

    For the rest I follows closely to the sample code RecordActivity.java and was able to verify that

    recorder.record(yuvIplimage)

    gets called 20 (or more) times, which should create an mp4 with 20 frames. However, the resulting mp4 files after open up only has 2 frames (two first frame of the preview) ! I have no idea what have caused such behavior. Any help would be greatly appreciate. Thank you.

    Long Le