Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (80)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Les images

    15 mai 2013

Sur d’autres sites (8926)

  • ffmpeg screencasting with webcam

    6 septembre 2017, par curiouser

    I want to use the screen view of the computer in real-time for a fake webcam. I did the video action on the bottom. But the frames like the video (2.34) are forming on top of each other. How can I solve this problem.

    https://www.youtube.com/watch?v=6AZRiW3hHrw

    Load the module
    sudo modprobe v4l2loopback exclusive_caps=1

    Find the dummy device
    v4l2-ctl --list-devices

    Start the virtual-webcam (change "/dev/video1" to reflect your system)
    ffmpeg -f x11grab -r 15 -s 1920x1080 -i :0.0+0,0 -vcodec rawvideo -pix_fmt yuv420p -threads 0 -f v4l2 /dev/video1
  • How i can slice audio file with using node.js

    11 février 2018, par Maxim Cherevatov

    tell me please how i can slice audio file with using node.js ? Now i read the documentation for ffmpeg module, but don’t understand how to slice audio file with using this module.
    I found this code, but it gives an error error : NaN

    ffmpeg('music/ant.mp3')
       .setStartTime('00:00:03')
       .setDuration('10')
       .output('music/ant.mp3')
       .on('end', function(err) {
           if(!err)
           {
               console.log('conversion Done');
           }
       })
       .on('error', function(err){
           console.log('error: ', +err);
       }).run();
  • How to use ffmpeg to extract WAVE_FORMAT_GSM610 file to WAVE_FORMAT_PCM file

    26 juillet 2017, par xuejianbest

    I have a compressed audio file that is WAVE_FORMAT_GSM610 format.

    Now I want to open it with python wave module. But wave module only support WAVE_FORMAT_PCM file.

    I setup ffmpeg tools. What command can I use to complete this conversion ?

    Or Is there good way to complete the task ?

    Thinks.