
Recherche avancée
Autres articles (104)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (7804)
-
End Part of .WAV file is not converted to .MP3 file
29 janvier 2021, par Shailendra Patil

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.


-
Convertion of mp3 file with ffmpeg results in a file with wrong length [duplicate]
16 avril 2018, par Arthur EfixtyThis 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%}";
doneIf 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 !
-
How can I convert *.flv file to *.ts file using FFmpeg on command line ?
14 février 2014, par DefondsHow can I convert *.flv file to *.ts file using FFmpeg on command line ? Is there any document about this ?
Best Regards,
Defonds