Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (41)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4199)

  • Memory leak when embedding ffmpeg library in Go program

    29 mars 2019, par andrea

    I’m using go version 1.11.2

    I wrote a go project which using ffmpeg C library.

    When I run this program, I tried to print out memory statistic by runtime.ReadMemStat(). What I got is heap allocated memory is always small (2MB in the picture below) but memory used showed by top command increase gradually until my process is killed by OS. It seems Go cannot manage C-allocated memory.

    So what actually happens or what am I misunderstanding here ??

    Appreciate any helps,

    Thanks in advanced,

    • When I stopped the process, memory usage dropped down intermediately.
    • I tried to test C code, there was no leak in C code.
    • I used debug.GC() to force GoGC running and debug.FreeOSMemory() periodically but it was not working.
    • more info about ReadMemStat, https://golang.org/pkg/runtime/#MemStats

    ffmpeg in Go - mem usage

  • rmenc : limit packet size

    2 mars 2015, par Andreas Cadhalpun
    rmenc : limit packet size
    

    The chunk size is limited to UINT16_MAX (written by avio_wb16), so make
    sure that the packet size is not too large.

    Such large frames need to be split into slices smaller than 64 kB, but
    that is currently supported neither by the rv10/rv20 encoders nor the rm
    muxer.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/rmenc.c
  • How to capture ffmpeg output in rails ?

    18 août 2019, par HelloWorld

    I’m running a ffmpeg command to try to get the duration of a video file, the command is as follows...

    system('ffmpeg -i C:\Users\example\Desktop\video9.mp4 -f ffmetadata')

    When I run that line it outputs a lot of info to the rails console, including duration. But how would I capture that info so I can split it and grab the data I need ? (I’m doing this inside a rails controller)

    When I run something like this...

    metadata = system('ffmpeg -i C:\Users\example\Desktop\video9.mp4 -f ffmetadata')
    puts metadata

    All it returns is false.