
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (42)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (7744)
-
Simplify enabling CORS with credentials.
27 octobre 2012, par Sebastian Tschanm index.html m js/jquery.fileupload-ui.js m js/main.js m server/php/upload.class.php m test/index.html m test/test.js Simplify enabling CORS with credentials. Please note the following Chrome issue : http://code.google.com/p/chromium/issues/detail?id=158148
-
Revision 4e06b0c602 : gen_asm_deps.sh : regex fix Fixed the quantifier that optionally matches a quote
25 juin 2012, par John KoleszarChanged Paths : Modify /build/make/gen_asm_deps.sh gen_asm_deps.sh : regex fix Fixed the quantifier that optionally matches a quote before the filename. This was originally reported in the homebrew project[1]. Note that this fix is different than patch posted there, as there are some platforms (...)
-
Convert PCM to AAC using PyAV
26 août 2022, par Dave JohansenI need to convert PCM (G.711U) audio to AAC in realtime. I've been able to do it with
ffmpeg
, but would like to usePyAV
to have direct control and not have to run a separate process. What's the best way to do that ?

cat input.raw | ffmpeg -hide_banner -f mulaw -ar 8000 -ac 1 -i - -c:a aac -f adts - > output.mp4



(NOTE : in the actually use case there aren't actual files for input.raw and output.mp4 and those are just streaming data but I did them to be able to show the example)