Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (105)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (9279)

  • fftools/ffmpeg_demux : Don't use fake object with av_opt_eval

    6 octobre 2023, par Andreas Rheinhardt
    fftools/ffmpeg_demux : Don't use fake object with av_opt_eval
    

    The av_opt_eval family of functions emits errors messages on error
    and can therefore not be used with fake objects when the AVClass
    has a custom item_name callback. The AVClass for AVCodecContext
    has such a custom callback (it searches whether an AVCodec is set
    to use its name). In practice it means that whatever is directly
    after the "cc" pointer to the AVClass for AVCodec in the stack frame
    of ist_add() will be treated as a pointer to an AVCodec with
    unpredictable consequences.

    Fix this by using an actual AVCodecContext instead of a fake object.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffmpeg_demux.c
  • Glitchy mp4 File saved with Matplotlib Animation via ffmpeg

    9 janvier 2024, par Jacob Ivanov

    I am attempting to save an .mp4 file using matplotlib.animation to output some simulation results. The relevent section is as follows :

    &#xA;

    ANI = FuncAnimation(fig, update, init_func = lambda : None, frames = range(0, 21300, 50))&#xA;ANI.save("[removed]/anim/v6 256 unforced 0.02.mp4", dpi = 600, fps = 30, writer = &#x27;ffmpeg&#x27;)&#xA;

    &#xA;

    However, it appears that there is some issue in the produced .mp4 file, as when I use macOS Quicktime to view the file, it pauses on certain frames, and restarts later on. It appears to consistently pause on the same frame a few seconds in. In order to check if Quicktime was the problem, I opened some random .mp4 files I found in a family group chat, and did not have this issue.

    &#xA;

    I also tried viewing this .mp4 file with VLC, which had no issue, and played without any glitches. The Slack media viewer built into the app pauses similar to Quicktime.

    &#xA;

    The following are all relevant versions :

    &#xA;

      &#xA;
    • macOS : 14.2.1 (23C71)
    • &#xA;

    • Python : 3.10.9 via Homebrew
    • &#xA;

    • Matplotlib : 3.6.2
    • &#xA;

    • ffmpeg : 6.1.1
    • &#xA;

    &#xA;

    If it would help, I can also provide the .mp4 file itself, but I'm not quite sure how to upload it. I will be happy to provide any additional information as well.

    &#xA;

    Unfortunately, I'm not very familiar with video rendering, but I would appreciate any help anyone could provide. Thank you in advance !

    &#xA;

  • lavu/random_seed : use arc4random() when available

    7 décembre 2015, par Ganesh Ajjanagadde
    lavu/random_seed : use arc4random() when available
    

    arc4random() was designed as a superior interface for system random
    number generation, designed for OpenBSD and subsequently incorporated by
    other BSD’s, Mac OS X, and some non-standard libc’s. It is thus an improvement to
    use it whenever available.

    As a side note, this may or may not get included in glibc, and there is
    a proposal to create a posix_random family based on these ideas :
    http://austingroupbugs.net/view.php?id=859.

    Tested on Mac OS X.

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] configure
    • [DH] libavutil/random_seed.c