Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (57)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9861)

  • Revision 644587cfdd : ads2gas : Allow converting code to thumb mode Currently this only supports thumb

    12 mai 2013, par Martin Storsjo

    Changed Paths :
     Modify /build/make/ads2gas.pl



    ads2gas : Allow converting code to thumb mode

    Currently this only supports thumb2.

    This involves rewriting certain instructions that can't be expressed
    in thumb2 into equivalent instruction sequences. The regexps for
    rewriting are currently written pretty narrowly, only covering the
    exact cases currently encountered in the code base.

    No IT instructions are added (since that would require more logic than
    plain regexps), so using the thumb mode requires enabling
    - mimplicit-it=always/thumb.

    Change-Id : I1f676ad1d351381f02bcf00105102aa8dd7ae364

  • Compress video with ffmpeg programatically - i.e. using C libraries instead of command line or wrapper

    29 décembre 2014, par Mick

    I am trying to find some examples or guidelines that help show how to compress a video programatically using ffmpeg API’s (i.e. the C API’s not the command line).

    In other words I would like to achieve the equivalent of the following ffmpeg command line :

    ffmpeg -i inoutVideo.mp4 -strict experimental -acodec aac CompressedVideo_aac.mp4

    but using the appropriate API calls from a C program.

    I can already do this by creating a wrapper around the ’ffmpeg.c’ program but I am trying to understand how to achieve this with the C libraries directly.

    I realise I can simply(!) read the source code of ffmpeg.c to see what it does, but I was hoping for something that either provides and overview or a specific example for video compression.

    Any pointers gratefully appreciated.

  • How to install ffmpeg for a django app on heroku ?

    18 janvier 2013, par yndolok

    I'd like to use ffmpeg to extract a frame from a video to use it as a poster. This is my first time deploying an app, let alone on heroku, so I'm not sure how to install ffmpeg on the server.

    I've found this build of ffmpeg with instructions to 'vendor' it into my app, and then adjust my app's configuration settings / path. What does it mean to vendor something ? I have a feeling it's a rails thing, because I can't seem to find an explanation by googling.

    Also, what would be the django equivalent of the instructions to run
    heroku config:set PATH=bin:vendor/ffmpeg/bin:<...> -a yourapp and heroku config:set LD_LIBRARY_PATH=vendor/ffmpeg/lib:/usr/local/lib -a yourapp ?