Recherche avancée

Médias (91)

Autres articles (81)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (13808)

  • Can't save ffmpeg output in Nodejs

    8 septembre 2020, par humble_button

    I have a problem with saving the preview from the .mp4 file. I followed this tutorial, but I got the Error : ffmpeg exited with code 1 : C :\Users\Lenovo\Documents\My projects\YouTube\routes : Permission denied. I don't know how to deal with it, the 'outputPath' is simplestrong text "public/uploads/previews". I am on Windows 10.

    


    return ffmpeg()
            .input(inputPath)
            .inputOptions([`-ss ${startPreviewInSec}`])
            .outputOptions([`-t ${previewDurationInSec}`])
            .noAudio()
            .format("gif")
            .output(outputPath)
            .on("end", resolve)
            .on("error", reject)
            .run();


    


  • arm : Use .data.rel.ro for const data with relocations

    16 novembre 2014, par Martin Storsjö
    arm : Use .data.rel.ro for const data with relocations
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure
    • [DH] libavcodec/arm/fft_fixed_neon.S
    • [DH] libavcodec/arm/fft_neon.S
    • [DH] libavcodec/arm/fft_vfp.S
    • [DH] libavutil/arm/asm.S
  • How to remove noise from audio .wav file in python3 like Audacity app works [on hold]

    9 février 2019, par Manohar Sonwan

    I have been working on an audio file to remove noise by using python3, I have tried "ffmpeg" (highpass and lowpass) filter option but I am not getting the correct result which I want. Then I found Audacity application which noise reduction technique is very good and it gives very good clear sound. Please suggest me any effective library in python3

    Consider I have been recording a tennis player and I want to listen collision sound of tennis racquet and the ball only but there is also some other noise like people, bird, car etc.

    ffmpeg -i  IMG_2016_FFMPEG.WAV -af "highpass =f=800,lowpass =f=100"
    IMG_2016_FFMPEG_lp_100_hp_800.wav

    It not giving output as Audacity application