
Advanced search
Medias (91)
-
Collections - Formulaire de création rapide
19 February 2013, by
Updated: February 2013
Language: français
Type: Picture
-
Les Miserables
4 June 2012, by
Updated: February 2013
Language: English
Type: Text
-
Ne pas afficher certaines informations : page d’accueil
23 November 2011, by
Updated: November 2011
Language: français
Type: Picture
-
The Great Big Beautiful Tomorrow
28 October 2011, by
Updated: October 2011
Language: English
Type: Text
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 October 2011, by
Updated: October 2011
Language: English
Type: Text
-
Rennes Emotion Map 2010-11
19 October 2011, by
Updated: July 2013
Language: français
Type: Text
Other articles (8)
-
Ajouter notes et légendes aux images
7 February 2011, byPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Supporting all media types
13 April 2011, byUnlike 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 (...)
-
Les formats acceptés
28 January 2010, byLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
On other websites (1741)
-
Generate AcoustID/Chromaprint acoustic fingerprint in iOS
28 March 2023, by ttarikChromaprint is an open-source software library for calculating an AcoustID audio fingerprint of an audio file.



I'm trying to generate this audio fingerprint from a local file on iOS.



The library can be built on Windows, Linux and OS X, where it creates a dynamic library as well as a standalone program (fpcalc) that accepts an audio file, decodes the audio and passes it to the chromaprint library to calculate the fingerprint. It doesn't really work on iOS for the following reasons:



- 

- The standalone fpcalc program can't be run on iOS because you can't run an executable from an app
- The source code to the fpcalc program uses chromaprint and ffmpeg. From what I've read, ffmpeg is difficult to compile on iOS. The chromaprint docs state that the Accelerate framework can be used in OS X/iOS, but there is no example code to do this and I have no idea where to start.







I've been having a bit of trouble actually building the library for iOS (CMake hates me), but I feel like the above problems are more relevant because even with the library compiled, it wouldn't just work out of the box.



I'm trying to avoid this being a "write my code for me" question, but I am very much stuck on essentially every aspect of generating a chromaprint fingerprint for iOS.



My goal, I think, is to recreate the functionality of the fpcalc program on iOS - to decode an audio file (stored on the device, of any audio type) and pass it to the chromaprint library to generate the fingerprint.



I found this question about acoustic fingerprinting on iOS but it wasn't relevant to chromaprint/AcoustID and the answers were less than helpful. Echoprint Codegen is interesting, but I need a chromaprint fingerprint.


-
Which FFMPEG Arguments to Copy .m4a Audio File in Flutter?
25 July 2021, by MeggyI've got my own fork of GSPrakashNaidu' Flutter Audio_Trimmer plugin which I'd like to use to edit an M4a audio file.


https://github.com/meghead/audio_trimmer


The plugin passes the following command to Flutter's FFMPEG plugin;


"-y -i \"$path\" -vn -ss $start -to $end -ar 16k -ac -c:a aac -b:a 96k -acodec copy $outPath"; 



Which can be seen here in the Android Studio console;


Running FFmpeg with arguments: [-y, -i, /storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212132002.m4a.temp, -vn, -ss, 5.0, -to, 10.5, -ar, 44k, -ac, 2, -b:a, 96k, -acodec, copy, /data/user/0/myfiles/cache/output.m4a].



But here's the error which gets thrown;


Guessed Channel Layout for Input Stream #0.0 : mono
I/mobile-ffmpeg(21007): Input #0, wav, from '/storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212265033.m4a':
I/mobile-ffmpeg(21007): Duration: 
I/mobile-ffmpeg(21007): 00:00:01.91
I/mobile-ffmpeg(21007): , bitrate: 
I/mobile-ffmpeg(21007): 705 kb/s
I/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Stream #0:0
I/mobile-ffmpeg(21007): : Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, mono, s16, 705 kb/s
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): [ipod @ 0x7277f388c0] Could not find tag for codec pcm_s16le in stream #0, codec not currently supported in container
E/mobile-ffmpeg(21007): Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
I/mobile-ffmpeg(21007): Stream mapping:
I/mobile-ffmpeg(21007): Stream #0:0 -> #0:0
I/mobile-ffmpeg(21007): (copy)
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Conversion failed!
D/flutter-ffmpeg(21007): FFmpeg exited with rc: 1 



What argument can I use to output .m4a?


-
Which FFMPEG Arguments to Pass for .m4a Audio File in Flutter?
25 July 2021, by MeggyI've got my own fork of GSPrakashNaidu' Flutter Audio_Trimmer plugin which I'd like to use to edit an M4a audio file.


https://github.com/meghead/audio_trimmer


The plugin passes the following command to Flutter's FFMPEG plugin;


"-y -i \"$path\" -vn -ss $start -to $end -ar 16k -ac -c:a aac -b:a 96k -acodec copy $outPath"; 



Which can be seen here in the Android Studio console;


Running FFmpeg with arguments: [-y, -i, /storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212132002.m4a.temp, -vn, -ss, 5.0, -to, 10.5, -ar, 44k, -ac, 2, -b:a, 96k, -acodec, copy, /data/user/0/myfiles/cache/output.m4a].



But here's the error which gets thrown;


Guessed Channel Layout for Input Stream #0.0 : mono
I/mobile-ffmpeg(21007): Input #0, wav, from '/storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212265033.m4a':
I/mobile-ffmpeg(21007): Duration: 
I/mobile-ffmpeg(21007): 00:00:01.91
I/mobile-ffmpeg(21007): , bitrate: 
I/mobile-ffmpeg(21007): 705 kb/s
I/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Stream #0:0
I/mobile-ffmpeg(21007): : Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, mono, s16, 705 kb/s
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): [ipod @ 0x7277f388c0] Could not find tag for codec pcm_s16le in stream #0, codec not currently supported in container
E/mobile-ffmpeg(21007): Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
I/mobile-ffmpeg(21007): Stream mapping:
I/mobile-ffmpeg(21007): Stream #0:0 -> #0:0
I/mobile-ffmpeg(21007): (copy)
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Conversion failed!
D/flutter-ffmpeg(21007): FFmpeg exited with rc: 1 



What argument can I use to output .m4a?