Recherche avancée

Médias (91)

Autres articles (49)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (5444)

  • How can I convert *.flv file to *.ts file using FFmpeg on command line ?

    14 février 2014, par Defonds

    How can I convert *.flv file to *.ts file using FFmpeg on command line ? Is there any document about this ?

    Best Regards,
    Defonds

  • Convertion of mp3 file with ffmpeg results in a file with wrong length [duplicate]

    16 avril 2018, par Arthur Efixty

    This question already has an answer here :

    I wrote a simple script for Linux where I loop through the folder (containing only .mp3 files) and add an album art to every item.

    Here is my code :

    for file in ~/Desktop/Rise\ Against/*
       do
           ffmpeg -i "${file}" -i ~/Desktop/appeal\ to\ reason.jpeg -map 0:0 -map 1:0 -codec copy -id3v2_version 3 \-metadata:s:v title="Album cover" -metadata:s:v comment="Cover (front)" "${file%}";
       done

    If I set the output filename to hardcoded value like out.mp3 then it works fine. But I need these files to have the same name as existing and overwrite them.

    Running this script results in having all files edited as expected (the album art changed) but they all have a length of 3 seconds. In terminal I get this [mp3 @ 0xc695e0] Audio packet of size 378219 (starting with 6B0855F2...) is invalid, writing it anyway.

    Thanks in advance !

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