Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (50)

  • 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

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

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

Sur d’autres sites (5244)

  • Error : ffmpeg exited with code 1 :

    16 juin 2022, par jibran

    I am using the videoshow node package to create straightforward video slideshows based on images using ffmpeg, with additional features such as audio. I am following the documentation exactly but I get the following error :

    



    


    Error : ffmpeg exited with code 1 :

    


    



    Here is the code :

    



        var videoshow = require(&#x27;videoshow&#x27;)&#xA;    const ffmpeg = require(&#x27;@ffmpeg-installer/ffmpeg&#x27;);&#xA;&#xA;&#xA;    var images = [&#xA;      &#x27;image1.jpg&#x27;,&#xA;      &#x27;image1.jpg&#x27;,&#xA;      &#x27;image1.jpg&#x27;&#xA;&#xA;    ]&#xA;    var videoOptions = {&#xA;      fps: 25,&#xA;      loop: 5, // seconds &#xA;      transition: true,&#xA;      transitionDuration: 1, // seconds &#xA;      videoBitrate: 1024,&#xA;      videoCodec: &#x27;libx264&#x27;,&#xA;      size: &#x27;640x640&#x27;,&#xA;      audioBitrate: &#x27;128k&#x27;,&#xA;      audioChannels: 2,&#xA;      format: &#x27;mp4&#x27;,&#xA;      pixelFormat: &#x27;yuv420p&#x27;&#xA;    }&#xA;&#xA;     var videoOptions = {&#xA;      fps: 24,&#xA;      transition: false,&#xA;      videoBitrate: 1024 ,&#xA;      videoCodec: &#x27;libx264&#x27;, &#xA;      size: &#x27;640x640&#x27;,&#xA;      outputOptions: [&#x27;-pix_fmt yuv420p&#x27;],&#xA;      format: &#x27;mp4&#x27; &#xA;    }&#xA;    videoshow(images, videoOptions)&#xA;      .audio(&#x27;nd.mp3&#x27;)&#xA;      .save(&#x27;/home/jibran/Desktop/video.avi&#x27;)&#xA;      .on(&#x27;start&#x27;, function (command) {&#xA;        console.log(&#x27;ffmpeg process started:&#x27;, command)&#xA;      })&#xA;      .on(&#x27;error&#x27;, function (err, stdout, stderr) {&#xA;        console.error(&#x27;Error:&#x27;, err)&#xA;        console.error(&#x27;ffmpeg stderr:&#x27;, stderr)&#xA;        console.error(&#x27;ffmpeg stdeout:&#x27;, stdout)&#xA;      })&#xA;      .on(&#x27;end&#x27;, function (output) {&#xA;        console.error(&#x27;Video created in:&#x27;, output)&#xA;      })&#xA;&#xA;    and on a console I get&#xA;&#xA;    ffmpeg process started: ffmpeg -i /tmp/videoshow-44a65b07-0949-4b1b-8a6e-bf8a71d5f5ca -i /tmp/videoshow-c7dd4222-385d-406e-8f10-c4160df3db17 -i /tmp/videoshow-2324c514-1738-4c6b-96dc-ab1cc3551d67 -y -filter_complex concat=n=3:v=1:a=0 /home/jibran/Desktop/video.avi&#xA;&#xA;    ffmpeg process started: ffmpeg -i /tmp/videoshow-0ff6909b-db19-4ba1-91ba-dc961127317f -i nd.mp3 -y -r 24 -b:v 1024k -vcodec libx264 -filter:v scale=w=640:h=640 -pix_fmt yuv420p -f mp4 -map 0:0 -map 1:0 -t 15 -af afade=t=in:ss=0:st=0:d=3 -af afade=t=out:st=12:d=3 /home/jibran/Desktop/video.avi&#xA;    Error: Error: ffmpeg exited with code 1: &#xA;        at ChildProcess.<anonymous> (/home/jibran/Desktop/hello-world/node_modules/fluent-ffmpeg/lib/processor.js:182:22)&#xA;        at ChildProcess.emit (events.js:127:13)&#xA;        at Process.ChildProcess._handle.onexit (internal/child_process.js:209:12)&#xA;    ffmpeg stderr: undefined&#xA;    ffmpeg stdeout: undefined&#xA;</anonymous>

    &#xA;

  • Raspberry crosscompilation in Eclipse

    27 juin 2018, par gogoer

    I want to compile an application for Raspberry in Eclipse (in windows). I installed SysGCC, configured Eclipse for crosscompiling. And if I create something like "Hello world" - everything is ok. Eclipse creates binaries which wonderfully works on Raspberry.
    But i need use FFMPEG libraries in my application . Here the minimal code of application :

    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavformat></libavformat>avformat.h>
    #include <libswscale></libswscale>swscale.h>

    int main(void) {
       av_register_all();
       return EXIT_SUCCESS;
    }

    I added libraries in project config. Project compiles good, but linker gives a lot of errors :

    C:\SysGCC\Raspberry\arm-linux-gnueabihf\sysroot\usr\local\lib\libavcodec.a(aaccoder.o): In function `quantize_and_encode_band_cost_template':
    /usr/src/ffmpeg/libavcodec/aacenc_quantization.h:108: undefined reference to `cbrtf'
    /usr/src/ffmpeg/libavcodec/aacenc_quantization.h:108: undefined reference to `cbrtf'
    /usr/src/ffmpeg/libavcodec/aacenc_quantization.h:108: undefined reference to `cbrtf'
    /usr/src/ffmpeg/libavcodec/aacenc_quantization.h:108: undefined reference to `cbrtf'
    C:\SysGCC\Raspberry\arm-linux-gnueabihf\sysroot\usr\local\lib\libavcodec.a(aacenc_is.o): In function `quantize_and_encode_band_cost_template':
    /usr/src/ffmpeg/libavcodec/aacenc_quantization.h:108: undefined reference to `cbrtf'
    C:\SysGCC\Raspberry\arm-linux-gnueabihf\sysroot\usr\local\lib\libavcodec.a(aacenc_is.o):/usr/src/ffmpeg/libavcodec/aacenc_quantization.h:108: more undefined references to `cbrtf' follow
    C:\SysGCC\Raspberry\arm-linux-gnueabihf\sysroot\usr\local\lib\libavcodec.a(adx.o): In function `ff_adx_calculate_coeffs':
    /usr/src/ffmpeg/libavcodec/adx.c:30: undefined reference to `cos'
    /usr/src/ffmpeg/libavcodec/adx.c:34: undefined reference to `lrintf'
    /usr/src/ffmpeg/libavcodec/adx.c:35: undefined reference to `lrintf'
    /usr/src/ffmpeg/libavcodec/adx.c:30: undefined reference to `cos'
    /usr/src/ffmpeg/libavcodec/adx.c:34: undefined reference to `lrintf'
    /usr/src/ffmpeg/libavcodec/adx.c:35: undefined reference to `lrintf'
    collect2.exe: error: ld returned 1 exit status
    make: *** [ffmpeg] Error 1

    02:21:24 Build Finished (took 8s.394ms)

    SOLVED :

    i used next command :

    arm-linux-gnueabihf-gcc -L"C:\SysGCC\Raspberry\arm-linux-gnueabihf\sysroot\usr\local\lib" -L"C:\SysGCC\Raspberry\arm-linux-gnueabihf\lib" -o "ffmpeg"  ./src/ffmpeg.o   -lc -lm -lpthread -lavformat -lavcodec -lswscale -lavutil -lavfilter -lavdevice -lswresample -lpostproc -ldl -lx264 -lgcc -lz

    where -lc -lm -lpthread -lavformat -lavcodec -lswscale -lavutil -lavfilter -lavdevice -lswresample -lpostproc -ldl -lx264 -lgcc -lz are libraries linker needs (maybe not all of them).
    please note that order is important.

  • Today we celebrate Data Privacy Day 2019

    28 janvier 2019, par Jake Thornton — Privacy

    Today we celebrate Data Privacy Day 2019 !!!

    What is Data Privacy Day ?

    Wikipedia tells us that : The purpose of Data Privacy Day is to raise awareness and promote privacy and data protection best practices.

    Our personal data is our online identity. When you think what personal data means – our phone records, credit card transactions, GPS position, IP addresses, browsing history and so much more. All so valuable and personal to us as human beings.

    That’s why we cannot take our personal data online for granted. We have a right to know which websites collect our data and how it’s then used, something that’s often not visible or easily recognisable when browsing.

    What Data Privacy Day means to Matomo

    Every year the team at Matomo uses this day as a chance to reflect on how far the Matomo (formerly Piwik) project has come. But then also reflect how far we still have to go in spreading the message that our data and personal information online matters.

    2018 saw the introduction of the EU General Data Protection Regulation (GDPR) to protect people’s data online. As a team, Matomo was at the forefront of this development in the analytics space and have since built a GDPR Manager to ensure our users can be fully compliant with the GDPR.

    With every new release of Matomo, we are ensuring that security continues to be at the highest standard and we will continue to be committed to our bug bounty program. Our most recent release of Matomo 3.8.0 alone added a Two Factor Authentication (2FA) feature and a password brute force prevention.

    What next for Matomo and data privacy ?

    As always, security is a top priority for every new release of Matomo and continues to only get better and better. We have a duty to spread our message further that the protection of personal data matters and today is a vital reminder of that. We are, and forever will be, the #1 open-source (and free to use) web analytics platform in the world that fully respects user privacy and gives our users 100% data ownership.

    In 2018 we changed our name, we updated our logo and website, and advanced our platform to compete with the most powerful web analytics tools in the world, all so we can spread our message further and continue our mission.

    Come with us on this exciting journey. Now is the time to take back control of your data and let’s continue creating a safer web for everyone.

    Please help us spread this message.