Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (103)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8507)

  • ffmpeg how to do the "earrape" sound effect

    20 avril 2020, par Shalin Shah

    I was wondering how to do the earrape effect using ffmpeg where the audio just sounds completely destroyed. Here's an example :
https://www.youtube.com/watch?v=KiCmvQiAC8Q

    



    I've tried a bunch of combinations of different commands on ffmpeg and the closest I've gotten is the following (where I use the superequalizer and then make the volume super high) :

    



    import ffmpeg
(
    ffmpeg
    .input('shark.wav')
    .filter("superequalizer", 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20)
    .filter("volume", 10)
    .output('output_earrape.wav')
    .run()
)


    



    I'm using a python wrapper but here's the command line equivalent :

    



    ffmpeg -i shark.wav -af "superequalizer=1b=20:2b=20:3b=20:4b=20:5b=20:6b=20:7b=20:8b=20:9b=20:10b=20:11b=20:12b=20:13b=20:14b=20:15b=20:16b=20:17b=20:18b=20,volume=10" output_earrape.wav


    



    The problem with the above is that it doesn't do anything for files that aren't already super loud (such as recorded audio) and most of the time the audio actually just ends up clipping and then being super soft.

    



    Does anyone have suggestions on how to do this effect ? Thanks !

    


  • How to make doppler effect on audio with ffmpeg [duplicate]

    3 janvier 2019, par Adam Estel

    This question already has an answer here :

    How can i make the doppler effect on audio with ffmpeg.I mean : Sound run from left to right and opposite, just like this video :
    https://www.youtube.com/watch?v=j35K4QC_9bM
    I research ffmpeg for a while but I can’t firgure the audio filter i can start with
    Thank you for helping me
    Have a nice day.

  • Failed to create secure directory pulse audio ffmpeg

    30 mai 2021, par john

    I'm trying to run rstp camera streaming with pulse audio and ffmpeg. I have a usergroup "adam" and I'm in "john".

    


    I run sudo -u adam ffmpeg -f video4linux -i /dev/video2 -f pulse -i default -f rstp://localhost:1111/tmp/cam

    


    I get error

    


    Failed to created secure directory /home/adam/.config/pulse: no such file or directory


    


    How can I resolve this ?