Recherche avancée

Médias (91)

Autres articles (52)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

Sur d’autres sites (5958)

  • Build libaacplus on Mac OS 10.9

    11 janvier 2016, par Thomas

    I try to compile libaacplus using this (coming from FFMPEG website) :

    wget http://217.20.164.161/~tipok/aacplus/libaacplus-2.0.2.tar.gz
    tar xzf libaacplus-2.0.2.tar.gz
    cd libaacplus-2.0.2
    sed -i '.bck' -e 's/libtool/glibtool/' autogen.sh
    ./autogen.sh
    make
    make install

    It fails at make step :

    /Applications/Xcode.app/Contents/Developer/usr/bin/make  all-recursive
    Making all in src
    make[2]: Nothing to be done for `all'.
    Making all in include make[2]: Nothing to be done for `all'.
    Making all in patches make[2]: Nothing to be done for `all'.
    Making all in frontend
    /bin/sh ../libtool  --tag=CC   --mode=link gcc  -g -O2   -o aacplusenc main.o ../src/libaacplus.la -lm  
    libtool: link: gcc -g -O2 -o .libs/aacplusenc main.o  ../src/.libs/libaacplus.dylib -lm    
    Undefined symbols for architecture x86_64:
      "_AuChannelOpen", referenced from:
         _main in main.o
    ld: symbol(s) not found for architecture x86_64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    make[2]: *** [aacplusenc] Error 1
    make[1]: *** [all-recursive] Error 1
    make: *** [all] Error 2

    I succeed to build when I was using 10.8.x but totally unable to do it with 10.9.x... Any clue ?

    Merry Christmas

  • Build libaacplus on Mac OS 10.9

    20 juillet 2020, par Thomas Ayoub

    I try to compile libaacplus using this (coming from FFMPEG website) :

    



    wget http://217.20.164.161/~tipok/aacplus/libaacplus-2.0.2.tar.gz
tar xzf libaacplus-2.0.2.tar.gz
cd libaacplus-2.0.2
sed -i '.bck' -e 's/libtool/glibtool/' autogen.sh
./autogen.sh
make
make install


    



    It fails at make step :

    



    /Applications/Xcode.app/Contents/Developer/usr/bin/make  all-recursive 
Making all in src 
make[2]: Nothing to be done for `all'. 
Making all in include make[2]: Nothing to be done for `all'. 
Making all in patches make[2]: Nothing to be done for `all'. 
Making all in frontend 
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -g -O2   -o aacplusenc main.o ../src/libaacplus.la -lm  
libtool: link: gcc -g -O2 -o .libs/aacplusenc main.o  ../src/.libs/libaacplus.dylib -lm     
Undefined symbols for architecture x86_64:
   "_AuChannelOpen", referenced from:
      _main in main.o 
ld: symbol(s) not found for architecture x86_64 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 
make[2]: *** [aacplusenc] Error 1 
make[1]: *** [all-recursive] Error 1 
make: *** [all] Error 2


    



    I succeed to build when I was using 10.8.x but totally unable to do it with 10.9.x... Any clue ?

    



    Merry Christmas

    


  • Overlaying two audio files with ffmpeg in C#

    17 août 2016, par Kostya Pysarchuk

    I’m learining NReco wrapper for ffmpeg, and trying to implement "damage" filter to audio like in this video.
    I have an audio file, and a "filter", then they should be merged to the finalised 3rd audio file.
    I think that I should use ffmpeg parameters in this way :

    ffmpeg -i main.mp3 -i filter.mp3 -filter_complex amerge -ac 2 -c:a libmp3lame -q:a 4 output.mp3

    And second part is how to chage volume of the "filter" and loop it throught main audio file duration before merging.
    I’m not sure if ffmpeg has it’s own filter-like method, so any proposals are welcomed.

    Thanks in advance.