Recherche avancée

Médias (91)

Autres articles (45)

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6843)

  • avfilter/af_superequalizer : fix out of array access

    19 juin 2017, par Paul B Mahol
    avfilter/af_superequalizer : fix out of array access
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/af_superequalizer.c
  • How to access an image file using FFmpeg in a React Native (Android) project ?

    9 septembre 2021, par Asp1re

    I made an app where I want to create a video from a png using FFmpeg in React Native but I'm stuck at my image file path part. FFmpeg uses the file system of the android so I can't really use paths like ./assets/img.png. I need an absolute path - can't use require(&#x27;img.png&#x27;)

    &#xA;

    Here is my FFmpeg code :

    &#xA;

    ffmpeg -loop 1 -i img.png -t 10 -r 1 -c:v libx264 output.mp4&#xA;

    &#xA;

    How can I reach the res or assets folder on an android ? Is there a way to bundle it into my app so on my android I can access it through an absolute path somehow ?

    &#xA;

    I searched a lot of questions similar to this and most of the answers are the use of require(&#x27;img.png&#x27;) but this doesn't work for me because the way FFmpeg works. Is there a way to access my image file with FFmpeg in a React Native Android project ?

    &#xA;

  • Access pixel data of each frame of a video in Ruby

    23 janvier 2019, par Robin

    I want to be able to read/stream a video with Ruby, on Mac, and be able to get access to the pixel data for each frame.

    What I’ve tried

    • https://github.com/streamio/streamio-ffmpeg

      It’s good at splitting the video into frames, but I don’t know how to get access to the pixel data without saving each frame as an image first (or if it’s possible at all).


    require 'streamio-ffmpeg'
    movie = FFMPEG::Movie.new("flakes.mp4")

    movie.screenshot("screenshots/screenshot_%d.jpg", { custom: %w(-vf crop=60:60:10:10), vframes: (movie.duration).to_i, frame_rate: movie.frame_rate/24 }, { validate: false })`

    • https://github.com/wedesoft/hornetseye-ffmpeg

      This seemed to have so much potential, but I don’t think it’s maintained anymore, and it’s not meant to be used on MacOS really, so I’m having issues installing it there (headers not found and such, and no way to configure it afaik).

    Any idea what tool or method I could use for this use case ?