Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (50)

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

  • easy normalization with FFmpeg

    29 mai 2024, par joberry

    I'm trying to write software to edit audio files. One aspect of this software is a normalization function.

    


    Until now, I have been normalizing audio with Audacity. Now, I want to normalize them using FFmpeg from a C# application. I looked into the documentation of FFmpeg and saw that there are different types of normalization. Additionally, FFmpeg has a lot of settings, which I find overwhelming.

    


    For Python, I found a nice library that makes it easy to normalize audio :

    


    from pydub import AudioSegment
from pydub.effects import normalize

def normalizeMP3(path):
    # Load an audio file
    audio = AudioSegment.from_file(path)

    # Normalize the audio file
    normalized_audio = normalize(audio)

    # Save the normalized file as MP3
    normalized_audio.export(path, format="mp3")


    


    However, I haven't found anything similar for C#.

    


    Maybe somebody can help me !

    


    Thanks !!!

    


  • ffmpeg conversion for apple tv

    24 janvier 2013, par Sam

    I have one particular movie file that is giving me grief while I am trying to convert my movie library to be able to be viewed on my Apple TV. I have been using iFlicks to convert all of my files and have only had one issue. The original of this particular movie file plays fine but after it has been converted the video freezes after a few minutes but the audio keeps playing. I tried using ffmpeg to convert the file but now the file is very choppy. The first time it is played the video will be choppy, the next time the audio will be choppy... but it plays fine in VLC for some reason. So I was thinking that maybe I have chosen the wrong codecs to suit Quicktime/Apple TV. Below is the command I used for ffmpeg. Have I chosen the right codecs and actually written the command correctly ? (I haven't really used ffmpeg before...)

    ffmpeg -i input.avi -vcodec libx264 -acodec libfaac output.m4v
  • avcodec/libxvid : remove unnecessary output packet data check

    19 mars 2021, par James Almer
    avcodec/libxvid : remove unnecessary output packet data check
    

    The user buffers passed to avcodec_encode_video2() haven't been propagated to
    AVCodec.encode2 implementations since 93016f5d1d280f9cb7856883af287fa66affc04c.
    Also, the generic encode code already unrefs the packet if nothing was encoded.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/libxvid.c