Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (65)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • End Part of .WAV file is not converted to .MP3 file

    29 janvier 2021, par Shailendra Patil

    enter image description here

    


    As you can see the in the above image, the end part of the .wav file is not represented in the mp3 file. Here, I am making use of avcodec_decode_audio4() api to decode each packet, and using lame_encode_buffer() api to encode it in mp3 format. Here, I am seeing this issue for MONO streams( 1.wav -> 1.mp3 ). I just wanted to know why is this occuring, even when I am providing all the .wav file content. I am suspecting there is some caching that is happening, due to which I am unable to get whole data into the mp3 file. Any help here would be appreciated.

    


  • Using find / for how do I remove the original file extension for the output file name ?

    2 septembre 2022, par burntscarr

    When using find or for to run things on multiple files, how would I make something not keep the file extension ?

    


    For example if using ffmpeg on multiple files to convert from DTS to WAV I would run one of the following :

    


    find . -name "*.dts" -exec ffmpeg -i "{}" -c:a pcm_s24le "{}.wav" \;

    


    or

    


    for f in ./*.dts; do ffmpeg -i "$f" -c:a pcm_s24le "$f.wav"; done

    


    Both of these make files that end in .dts.wav rather than just .wav

    


    My goal is to find out what I would add/change to make the "{}.wav" or "$f.wav" not include the .dts part for the output file name. (and several other examples with various extensions)

    


    This happens automatically when using the cli version of flac, the output file automatically removes .wav and has .flac instead, when no output file is specified.
(Ex : flac -8 *.wav would create .flac files next to the .wav files, but they aren't .wav.flac, they're just .flac)

    


  • FFMPEG Incorrect File Output Path

    3 avril 2016, par Benny Chen

    I’am working in windows 7 32bit and trying to stream file with ffmpeg, but the output file keep going on wrong location.

    If I use this code :

    ffmpeg -i input -c:v copy -c:a copy output.mp4

    The output file will be saved in /Users/username

    If I use absolute path :

    ffmpeg -i input -c:v copy -c:a copy c:/output.mp4

    or

    ffmpeg -i input -c:v copy -c:a copy "c:/output.mp4"

    It put the file in /Users/username/AppData/Local/VirtualStore

    So..it is weird and what the heck is the "VirtualStore" folder still a mystery....

    My question is simple, how to put output file in desired path location. Thanks.