Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (57)

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

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5883)

  • Convert WAV to AIFF with ffmpeg

    12 novembre 2016, par Arete

    How can I convert a wav file to an AIF file with ffmpeg ?

    I need to make various files one in 16 Bit, one in 24 bit and one in 32 Bit.

    I also need to make different sample rates. E.g one in 176,400 kHz and one in 44,100 kHz.

    I know ffmpeg -i input-file.wav output-file.aif will convert the file but I am not sure about the rest.

    https://www.ffmpeg.org/general.html#Audio-Codecs says ffmpeg supports AIFF but there is no documentation on the AIFF encoding : https://en.wikipedia.org/wiki/Audio_Interchange_File_Format#AIFF-C_common_compression_types

  • Convert WAV to AIFF with ffmpeg

    15 février 2021, par Arete

    How can I convert a wav file to an AIF file with ffmpeg ?

    



    I need to make various files one in 16 Bit, one in 24 bit and one in 32 Bit.

    



    I also need to make different sample rates. E.g one in 176,400 kHz and one in 44,100 kHz.

    



    I know ffmpeg -i input-file.wav output-file.aif will convert the file but I am not sure about the rest.

    



    https://www.ffmpeg.org/general.html#Audio-Codecs says ffmpeg supports AIFF but there is no documentation on the AIFF encoding : https://en.wikipedia.org/wiki/Audio_Interchange_File_Format#AIFF-C_common_compression_types

    


  • Compiling custom FFMPEG for mp3/wav to flac conversion

    3 décembre 2019, par Arttu

    I need to compile ffmpeg from source for CentOS. The goal it to convert MP3 and WAV to FLAC. I tried to compile ffmpeg with this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
    and it worked fine, but took approximately 20min and compiled a bunch unnecessary things, even thought I did not used next options as recommended in guide, but used :

    PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
    --prefix="/opt/tmg/ffmpeg_build" \
    --pkg-config-flags="--static" \
    --extra-cflags="-I/opt/tmg/ffmpeg_build/include" \
    --extra-ldflags="-L/opt/tmg/ffmpeg_build/lib" \
    --extra-libs=-lpthread \
    --extra-libs=-lm \
    --bindir="/opt/tmg/ffmpeg_build/bin" \
    --enable-gpl \
    --enable-libfreetype

    My question is what do I need for MP3 and WAV to FLAC and how do I compile just that part ?

    I found in configuration --disable-all option, but what do I have to enable ?

    Thanks in advance.