Recherche avancée

Médias (91)

Autres articles (9)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

  • Recording Screen with FFmpeg

    7 juillet 2019, par Sarcoma

    I recently used the FFmpeg bash commands below to capture a screen recording.

    Are there any improvements that I could make to streamline this process ?

    Or perhaps some settings to reduce the size of the output files ?

    Ideally, I’d like to capture to mp4 directly. Is this possible ?

    Any advice generally about FFmpeg screen recording would be most appreciated.

    ffmpeg -f x11grab -y -r 30 -s 1920x1080 -i :0.0 -vcodec huffyuv out.avi
    # Then convert it to .mp4
    ffmpeg -y -i out.avi -s 1920x1080 -f mp4 -vcodec libx264 -preset slow -crf 18 -b:v 3000k -maxrate 4000k -bufsize 512k -c:a aac -b:a 128k -strict -2 out.mp4
    # and remove the .avi
    rm out.avi
  • app not installing on Android 4.2 or lower device

    19 août 2015, par user1235389

    My application uses ffmpeg native libary.
    Recently i upgraded ffmpeg library which is used in my application.

    But when i try to install the app on Android 4.0 or 4.2 devices, after installation, I cannot launch the app.

    it gives error on system.loadlibrary(lib.so)

    the log shows

    "cannot load library java.lang.unsatisfiedlinkerror"

    I can install the application succesfully on devices with Android version 4.4 or above.

    Kindly help me know why I cannot launch the application on version 4.0 or 4.2 devices.

  • How do I use Ff-mpeg, Grabbing .PNG from RTMP stream ?

    22 février 2016, par Lewis Day

    I have recently installed Ff-mpeg onto my vps and have looked online for possible solutions to my problem I was having, I’m wondering how I can grab individual frames from a rtmp stream and display them as an image. I know this has previously been asked before here ; but my question is how can I use this code ?

    For example the answer on that question was marked as this ;

    ffmpeg -an -flv_metadata 1 -analyzeduration 1 ...

    How would I use this on a .php file ? I mean this doesnt even ask for the rtmp ip ?