Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (77)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7489)

  • FFmpeg - inverting one of two audio files and merging them

    3 février 2023, par kubinka0505

    I want to merge two files with FFmpeg, but one with inverted phase.

    


    I've used following command, but It doesn't work.

    


    ffmpeg -i "Song.wav" -i "Vocals.wav" -filter_complex "[0:a][1:a]amerge=inputs=2,pan=stereo|c0=c0|c1=-c1[a]" -map [a] "Instrumental.wav"

    


    [Parsed_pan_1 @ 04c69000] Expected in channel name, got "-c1"
[AVFilterGraph @ 04b9bd80] Error initializing filter 'pan' with args 'stereo|c0=c0|c1=-c1'
Error initializing complex filters.
Invalid argument


    


    I've also tried multiple variants of c0code>, etc.

    


    What command should I use ? Or maybe there's an easier workaround ?

    


  • How can I record audio from output device using ffmpeg ?

    17 mai 2020, par Nimeth

    I'm building an app (Android and iOS) that user could sing MV Karaoke over HLS video streaming. To produce a final recording for a user, I use ffmpeg to mix the audio stream taken directly from the song with user's recorded vocal and video. But the big challenge is when there are silence periods during recording due to low internet bandwidth, there would be a significant lag time in the final mixed output which is not acceptable for users. How can I use ffmpeg to live record audio being played by another player and use it to mix with user's vocal ?

    


  • Python ffmpeg 5_second_video.mp3 : No such file or directory Conversion failed

    10 septembre 2017, par blacklight

    Here is my python code :

       call(['ffmpeg', '-loop', '1',  '-y', '-i', '5_second_video.jpg', '-i','5_second_video.mp3' , '-acodec', 'copy', '-vcodec', 'libx264', '-shortest', song +'.mp4'], shell=False)

    There is a file called 5_second_video.mp3 in my desktop but it is returning me this error

    5_second_video.mp3 : No such file or directory
    Conversion failed !