Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (60)

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

  • fate/vcodec : use the encoder private option for frame skip compare function

    27 mai 2020, par James Almer
    fate/vcodec : use the encoder private option for frame skip compare function
    

    Stop using the deprecated global option

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] tests/fate/vcodec.mak
  • FFmpeg transcoding mpeg2 to H264 and compare frames

    11 novembre 2016, par Ivan Kolesnikov

    I have the following mpeg2 source file :

    Stream #0:0[0x900] : Video : mpeg2video (Main) ([2][0][0][0] / 0x0002),
    yuv420p(tv, top first), 720x576 [SAR 16:15 DAR 4:3], 4540 kb/s, 25
    fps, 25 tbr, 90k tbn, 50 tbc

    And transcoding it to H264 with the following command :

    ffmpeg -i source.mpg -vcodec h264_nvenc -r 25 -g 25 -acodec copy
    -copyts -f mpegts example1.mpg

    After this I want to extract identical frames from the both video files :

    ffmpeg -y -ss 00:44:16 -i source.mpg -frames:v 1 source.png

    ffmpeg -y -ss 00:44:16 -i example1.mpg -frames:v 1 example1.png

    But pictures(source.png and example1.png) are different. Please see the source.png :
    enter image description here

    And the example1.png
    enter image description here

    How can I catch the same moment(frame) at the both video ?

  • avcodec/me_cmp : add median SAD compare function

    18 août 2016, par Stanislav Dolganov
    avcodec/me_cmp : add median SAD compare function
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/me_cmp.c
    • [DH] libavcodec/me_cmp.h
    • [DH] libavcodec/motion_est.c
    • [DH] libavcodec/mpegvideo.h
    • [DH] libavcodec/options_table.h