Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (70)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (10016)

  • lavc/vorbisdsp : RISC-V V inverse_coupling

    26 septembre 2022, par Rémi Denis-Courmont
    lavc/vorbisdsp : RISC-V V inverse_coupling
    

    This uses the following vectorisation :

    for (i = 0 ; i < blocksize ; i++)
    ang[i] = mag[i] - copysignf(fmaxf(ang[i], 0.f), mag[i]) ;
    mag[i] = mag[i] - copysignf(fminf(ang[i], 0.f), mag[i]) ;

    • [DH] libavcodec/riscv/Makefile
    • [DH] libavcodec/riscv/vorbisdsp_init.c
    • [DH] libavcodec/riscv/vorbisdsp_rvv.S
    • [DH] libavcodec/vorbisdsp.c
    • [DH] libavcodec/vorbisdsp.h
  • ffmpeg setting chapters by framecount instead of milliseconds ?

    28 septembre 2022, par BabaG

    I've just gone through a process of adding chapters to a file using ffmpeg. Works great but, the way I found to do it required converting the marker placements to milliseconds from the original timecode. Since my editing software will display my files with framecounts, it occurred to me that it might be possible to save some conversion effort by telling ffmpeg where to place the chapter markers using these framecounts.

    &#xA;

    Here's an example of a chapter marker I placed :

    &#xA;

    [CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=7000&#xA;END=291199&#xA;title=Chapter marker&#xA;

    &#xA;

    I see that the TIMEBASE is set to 1/1000. That means that the START time for this chapter is 7 seconds (210 frames). To what extent will ffmpeg accept a formula as its TIMEBASE ? Can I put in something like :

    &#xA;

    [CHAPTER]&#xA;TIMEBASE=1/30&#xA;START=210&#xA;END=8736&#xA;title=Chapter marker&#xA;

    &#xA;

    or

    &#xA;

    [CHAPTER]&#xA;TIMEBASE=100/2997&#xA;START=210&#xA;END=8736&#xA;title=Chapter marker&#xA;

    &#xA;

    thanks.

    &#xA;

  • avcodec/flvdec, intelh263dec : Remove redundant assignments

    28 octobre 2022, par Andreas Rheinhardt
    avcodec/flvdec, intelh263dec : Remove redundant assignments
    

    ff_mpeg1_dc_scale_table is the default value for
    [yc]_dc_scale_table (as set by ff_mpv_common_defaults()).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/flvdec.c
    • [DH] libavcodec/intelh263dec.c