
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (75)
-
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (10319)
-
Getting the "Invalid data found when processing input" error when I try to convert a raw pcm file to mp3 ?
10 août 2023, par JironI tried to convert a file from pcm into mp3 with ffmpeg and the npm package fluent-ffmpeg. This is my code :


const ffmpeg = require('fluent-ffmpeg');

function convert(input, output, callback) {
 ffmpeg(input)
 .output(output)
 .on('end', function() { 
 console.log('conversion ended');
 callback(null);
 }).on('error', function(err){
 console.log('error: ' + err);
 callback(err);
 }).run();
 }

 convert('./test.pcm', './converted.mp3', function(err){
 if(!err) {
 console.log('conversion complete');
 }
});



But every time I execute the script, I get this error :


error: Error: ffmpeg exited with code 1: ./test.pcm: Invalid data found when processing input



When I tired running :


ffmpeg -f s16le -ar 48k -ac 2 -i test.pcm converted.mp3



Everything worked though. Is there something wrong with the npm package ? Is there something I missed out or something I did wrong on my code ?


Edit :


My code works when I try to convert an mp3 to a wav file (for example). So it's only struggling with pcm files.


-
Revert "aviobuf : Discard old buffered, previously read data in ffio_read_partial"
9 octobre 2020, par Marton BalintRevert "aviobuf : Discard old buffered, previously read data in ffio_read_partial"
This is unneeded after 2ca48e466675a8a3630061cd2c15325eab8eda97 and it breaks
ffio_ensure_seekback().This reverts commit 53c25ee0736497b46bb76064cc2c84c976b2d295.
Signed-off-by : Marton Balint <cus@passwd.hu>
-
Fatal Exception : java.lang.UnsatisfiedLinkError lopen failed : library name "/data/packagename/lib/arm64/libmobileffmpeg_abidetect.so" too long
23 septembre 2020, par Android198Fatal Exception: java.lang.UnsatisfiedLinkError lopen failed: library name "/data/packagename/lib/arm64/libmobileffmpeg_abidetect.so" too long 



I got this error in android 5 devices because my app packagename is too long. i build apk with abi filters
armeabi-v7a
,arm64-v8a


'java.lang.System.loadLibrary (System.java:989)
 com.arthenica.mobileffmpeg.AbiDetect.<clinit> (AbiDetect.java)
 com.arthenica.mobileffmpeg.AbiDetect.getNativeAbi (AbiDetect.java)
 com.arthenica.mobileffmpeg.AbiDetect.setArmV7aNeonLoaded (AbiDetect.java)
 com.arthenica.mobileffmpeg.Config.enableLogCallback (Config.java:5)'
</clinit>