
Recherche avancée
Autres articles (38)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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" (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (4118)
-
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 -
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 !
-
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.