Recherche avancée

Médias (91)

Autres articles (64)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (7519)

  • What does "dash" - mean as ffmpeg output filename

    26 août 2020, par DDS

    I'm trying to use ffmpeg with gnuplot to draw some audio spectra, I'm following this ffmpeg doc link.

    


    Now I'm asking what "dash" - means on this line right after -f data, it should be a filename : the last element of ffmpeg command should the output file but I have no files named - in the directory after running the command.

    


    ffmpeg -y -i in.wav -ac 1 -filter:a aresample=8000 -map 0:a -c:a pcm_s16le -f data - | gnuplot -p -e "plot 'code>

    


    I looked on ffmpeg docs but I didn't find anything.

    


  • lavc/libvpxenc : handle queue desync more gracefully

    28 février 2023, par Anton Khirnov
    lavc/libvpxenc : handle queue desync more gracefully
    

    If the packets returned by libvpx and our internal frame properties
    queue get desynchronized for some reason (should not happen, but it is
    not clear libvpx API guarantees this), we will keep adding to the queue
    indefinitely and never remove anything.

    Change the code to drain the queue even if timestamps do not match.

    • [DH] libavcodec/libvpxenc.c
  • avformat/av1dec : fix return value on some code paths

    14 août 2020, par James Almer
    avformat/av1dec : fix return value on some code paths
    

    If avio_read() returns a value of bytes read that's lower than the
    expected, return an error instead. And when there are zero bytes in
    the prefetch buffer, return 0 in order for the frame merge bsf to
    drain all potentially buffered packets.

    Missed by mistake when amending and committing 9a7bdb6d71.

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

    • [DH] libavformat/av1dec.c