
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
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)
-
Android record screen and stream it
15 novembre 2016, par Antonio C GI am working on a personal project in which I want to record the screen of my phone and stream it. It doesn’t have to record the whole, it can be just my app. I am trying to use ffmpeg, but I see that is not possible to read from /dev/graphics/fb0 as it requires root.
I am trying to check what other options do I have. I know it must be possible, as there are other apps that do the same without the need of having a rooted device.
I have just found this class https://developer.android.com/reference/android/media/projection/MediaProjection.html, that might be useful, but it is only available in API 21.
Could you give me any tips of tools, or how could I achieve this ?
Thanks.
-
Android OpenCV trim .mp4 video file
2 février 2016, par AlexI am developing an app for Android platform using Unity 3d. My task is to trim .mp4 video file. So, for this I decided to implement a third party lib and use it from Android native Activity via plugin for Unity.
Here are some options I have already tried, but the did not work :
- mp4parser lib. I know it is open source, but I haven’t found any working example of using the source code of this lib in Android project. I am always getting a runtime error (attribute ftyp not found). Using this lib in form of .jar works from Eclipse Android project, but fails in Unity 3d : when calling MovieCreator.build method this lib throws a NullReferenceException in BoxPropertyImpl.class.
- ffmpeg lib. I have already found a working project. I am able to trim the video from Android activity, but when returning to Unity player it freezes forever.
My next option is to try OpenCV lib. Have anyone made video trimming with this lib on Android platform ?
Thanks for any help !
-
Playing m3u8 on Android Froyo using FFmpeg
8 février 2012, par user1184526I need to create an http live streaming client in Android froyo without being dependent on 3rd party applications (e.g Vitamio). I am able to configure and build Bambuser's release of FFmpeg using Android ndk r7. My problem is I don't know how to use it.
I found sample codes here in stackoverflow and other forums where people are able to play .avi/.mp3 files from a url using av_open_input_file(). My question is, is it the same for m3u8 files ? Or, do i need to use other functions to be able to work around them ? I don't know how to begin.
Note : I am an android developer. My C programming is a little bit weak.