Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (59)

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

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (4546)

  • C++ code for ffmpeg terminal command [on hold]

    17 janvier 2018, par KingWealth

    Platform - Linux
    I created a v4l2loopback device by following the guide.
    The following terminal command is used to write the video testsrc.avi into the loopback device /dev/video1

    ffmpeg -re -i testsrc.avi -f v4l2 /dev/video1

    Now the question is, I want the c++ code for the above mentioned to terminal comment.

    Note - c++ code for -f v4l2 /dev/video1 is enough too.

    The actual program and logic is really long and irrelevant to explain.
    The problem is, i want to write ffmpeg avframes into the loopback device but using fwrite is giving disturbed output.

  • I would make the fadeout this code go to the volume 0.1 is possible

    18 décembre 2015, par wildson

    I would make the fadeout this code go to the volume 0.1 is possible ?

    exec("ffmpeg -i audio.mp3 -af 'afade=t=out:st=30:d=5' out.mp3");
  • Docker ffmpeg exit code 1

    9 septembre 2021, par Alex Khonko

    I install docker image :

    


    FROM jrottenberg/ffmpeg:4.0-alpine

RUN  apk update && apk upgrade
RUN apk add php7

EXPOSE 8082

CMD sh -c 'php7 -S 0.0.0.0:8082 -t /www/public/'
ENTRYPOINT []


    


    and have index.php and audio in the same folder.

    


    After, I call this :

    


    $out = $resCode = null;

$command = "ffmpeg -i /www/public/audio_2021-09-09_12-53-47.ogg -vn -ab 128k -ar 44100 -y /www/public/test.mp3";
exec($command,$out,$resCode);


    


    and resCode is 1, output is empty string.

    


    What can be the problem, or how to fix it ?