Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (104)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

Sur d’autres sites (15948)

  • Remove version numbers from individual files.

    28 août 2015, par blueimp
    Remove version numbers from individual files.
  • How do I set Individual Input Volumes using a FFMPEG complex filter with Amix

    18 août 2022, par James Parker

    How do I set the individual volume levels for 4 individual inputs using FFMPEG and a complex filter ?

    


    This is the filter that I currently have.

    


    xstack=inputs=${inputs.length}:layout=0_0|w0_0|0_h0|w0_h0;amix=inputs=${inputs.length}

    


  • How to map inputs from multiple device into single stream with multiple channels ?

    30 septembre 2019, par ศาสะ ศรีศักดิ์

    I’m try to use ffmpeg to map audio streams from 4 sound cards in to single file with 8 channels. I’m try to learn how to use map_channel or -filter_complex but no luck, its hard to understand. Please tell me how command should be.

    Here is my code so far.

    ffmpeg -f dshow -i audio="Mic/Inst/Line In 1/2 (4- Studio 1824)"
    -f dshow -i audio="Mic/Line In 3/4 (4- Studio 1824)"
    -f dshow -i audio="Mic/Line In 5/6 (4- Studio 1824)"
    -f dshow -i audio="Mic/Line In 7/8 (4- Studio 1824)"
    -filter_complex "[0:a:0][0:a:1][1:a:0][1:a:1][2:a:0][2:a:1][3:a:0][3:a:1] amerge=inputs=8" output.wav

    After many trials and errors. some working code.

    ffmpeg -f dshow -i audio="Mic/Inst/Line In 1/2 (4- Studio 1824)"
    -f dshow -i audio="Mic/Line In 3/4 (4- Studio 1824)"
    -f dshow -i audio="Mic/Line In 5/6 (4- Studio 1824)"
    -f dshow -i audio="Mic/Line In 7/8 (4- Studio 1824)"
    -filter_complex "[0:a][1:a][2:a][3:a]amerge=inputs=4[a]" -map "[a]" output.wav

    Thought, I still don’t understand what is -map "[a]" do.