
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 (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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
Sur d’autres sites (10780)
-
FFMpeg /dev/video0 on Android
1er juin 2015, par Michael PlatonovI’m trying to record video from usb/uvc video camera connected to android tablet using ffmpeg. ffmpeg is working on the tablet, lists formats supported by the camera and is able to convert existing video from one format to another. However can’t make it grad video or mjpeg from usb camera and save it as mp4. Are there any android limitations maybe ? Or what the reasong could be ? Is capturing video with ffmpeg on android is actually possible ?
-
how to set android's camera as the input of ffmpeg
5 mai 2017, par HarrisonI managed to run ffmpeg in Android Studio project, but don’t know how to set the Android’s camera as the input of ffmpeg. Is it possible now ?
If not, is there some open-sourced projects that can get Android’s camera and turn the phone to a rtsp server ? Then I can use ffmpeg to get that rtsp link.
Really appreciate it if some suggestions about this, thanks.
-
Pixel format for Android 5.0 devices
3 mars 2015, par user1917864I am trying to fetch screenshots of android devices using adb screencap command along with the ffmpeg command.
The command works well for devices other than Android 5.0.Command :
ffmpeg -loglevel panic -f rawvideo -pix_fmt bgr0 -r 10 -i - -vf scale=1 -f image2 -vcodec png -vframes 1 /sdcard/screen.pngThe issue is for Android 5.0 devices after every rendering of image a green image comes, so I figured this might be because of mismatch of pixel format(pix_fomrat).
I have tried using all the rgb, bgr and rgba formats but invain.
Can anyone help out figuring what could be the problem using this ffmpeg command with Android 5.0 devices.Thanks in advance