Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (9)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5394)

  • avformat/flvdec : also include file position in debug output

    23 avril 2014, par Michael Niedermayer
    avformat/flvdec : also include file position in debug output
    

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

    • [DH] libavformat/flvdec.c
  • ffmpeg seek by position, not timestep [closed]

    23 octobre 2023, par user112346

    I'm implementing an application which requires extracting, say, 100 frames from a video stream, processing them, then extracting the next 100 and repeating this process until the end of the video.

    &#xA;

    I've been doing this using :

    &#xA;

    ffmpeg -i input.mkv -vf "select=gt(n\,$MYMIN_MINUS_ONE)*lt(n\,$MYMAX_PLUS_ONE)" -vsync 0 frames/frame%08d.png&#xA;

    &#xA;

    However, this approach encodes everything unnecessarily and is slow. I'm not sure if ffmpeg can seek based on the sequential frame position. Therefore, I changed the code to use timesteps by first doing :

    &#xA;

    ffmpeg -itsscale $FRAME_RATE -i input.mkv -vf "fps=1" -q:v 1 -vsync vfr -c:v libx265 input_stretched.mkv&#xA;

    &#xA;

    Which stretches the input such that each frame in the original sequence corresponds to a different second. Then frame access is done by using :

    &#xA;

    ffmpeg -ss $MYMIN -i input_stretched.mkv -frames:v $NFRAMES frames/frame%08d.png&#xA;

    &#xA;

    This solution seems to work and, after the initial encoding, access is much faster than using the filtergraph. I can probably alternatively divide the timestamps when accessing, instead of stretching the video, although I have not yet tested this.

    &#xA;

    I'd like to know if there is a less "hacky" way of doing this, such as to use the frame sequence numbers directly, instead of converting to timesteps.

    &#xA;

  • aacdec_usac : remove fallback for custom maps with invalid position

    5 juin 2024, par Lynne
    aacdec_usac : remove fallback for custom maps with invalid position
    

    Not needed as every possible index is mapped.

    • [DH] libavcodec/aac/aacdec_usac.c