
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 (95)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (6719)
-
Binaries for android FFmpeg and SOX
23 novembre 2022, par kc ochibiliI have been trying for two weeks to find binaries for ffmpeg and Sox (armeabi,armeabiv7, x86) but i did not succeed. I tried building it my self from this project but I still did not succeed. 
Can you help me build the project and then share the binaries ?



I would heartly appreciate.
Here is the github repository
https://github.com/guardianproject/android-ffmpeg


-
Xamarin.Android.FFmpeg not compressing video from Nugat 7.1
16 juillet 2018, par Mr ShoubsWe have been using Xamarin.Android.FFmpeg successfully for some time to compress videos, it works up to Nougat 7.0 (API level 24), but it doesn’t seem to support the latest Android versions :
- Oreo | 8.1.0 | API level 27
- Oreo | 8.0.0 | API level 26
- Nougat | 7.1 | API level 25
Package Name : Xamarin.Android.FFmpeg v1.0.32
We use the following options :
string[] cmds = new string[] {
"-y",
"-i",
inputFilepath,
"-strict", "experimental",
"-vcodec", "libx264",
"-preset", "ultrafast",
"-crf","30", "-acodec","aac", "-ar", "44100" ,
"-q:v", "20",
"-vf",
"mp=eq2=1:1.68:0.3:1.25:1:0.96:1",
ouputFile,
};
string cmdParams = string.Join(" ", cmds);
FFMpeg.Xamarin.FFMpegLibrary.Run(Xamarin.Forms.Forms.Context, cmdParams, loggerAction);We’ve searched for alternatives, but nothing seems obvious. Does anyone know how to resolve this issue or suggest an alternative library/approach (even a paid for one) ?
EDIT :
We note a message on the read me read me which states :
For Android 6.0 onwards, use Xamarin.Android.MP4Transcoder Android 6.0
onwards, text relocations are strictly prohibited, many source files
used in ffmpeg use text relocations so ffmpeg will never run on future
android builds unless they rewrite large library and replace them with
alternative of text relocations. For this, only alternative is to use
Android’s native Mp4 transcoder.However, we’ve tried using :
Xamarin.MP4Transcoder.Transcoder.For720pFormat().ConvertAsync
Xamarin.MP4Transcoder.Transcoder.For960x540Format().ConvertAsyncbut this doesn’t solve our requirements for compression.
-
Play RTMP WITH MPEG-TS format on Android
10 septembre 2015, par Guy LevinI’m trying to play a video from a rtmp stream on Android using JavaCV and ffmpeg
I’m able to see videos from other sources like rtsp
Do you have any idea what could be the reason ?
Thanks