
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (28)
-
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 -
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 (...) -
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 (...)
Sur d’autres sites (5913)
-
Unable to display output Android - ffmpeg
31 octobre 2015, par RahulI’m a newbie in android programming and am using https://github.com/WritingMinds/ffmpeg-android-java for my project to use ffmpeg in apps. I’ve followed the instructions as described in http://hiteshsondhi88.github.io/ffmpeg-android-java/ but my output for
"-version"
as command in the function described in the second link asffmpeg.execute(cmd, new ExecuteBinaryResponseHandler()
gives a blank output. What should I add in theonSuccess(String message)
or in theonFinish(String message)
function ? Thanks. -
Android FFmpeg wrapper that can run https protocol
19 février 2019, par HendersonI’m trying to deploy ffmpeg command on my android app.
the command I’m gonna run is like
ffmpeg -headers "X-Token:SOMETOKEN" -i https://streamthatiwannaget.com/player.m3u8 -acodec copy outputfile.m4a
I tried libraries from bravobit’s and writingminds’s but the problem was both of them DO NOT support
https
protocol.Seems like
openssl
is required when compilingffmpeg
.But it’s really frustrating to building, writing Android.mk and JNI... so on.
Is there any ffmpeg-android library that can deal with https protocol ?
Or any idea helpful for this ? Thank you in advance. -
Android - merge (join) two or more WAV files into one (mix it) simultaneously
23 mai 2016, par Pepa ZapletalI want merge more WAV files in my app into one WAV file. But I don’t want combine them consecutively (like File1-File2-File3...) but all files should start at the same time (concurrently/simultaneously).
Is this possible in Android without using some natives libraries (like FFmpeg) ? I looked at the
AudioTrack
andSoundPool
but I think it’s not a solution for this problem.Also I found this post Android : How to mix 2 audio files and reproduce them with soundPool but how can I combine bytes from more WAV files ?