
Recherche avancée
Autres articles (33)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 (5160)
-
What h.264 format loads on android AND IOS ?
13 février 2017, par JKirchartzTheoretically both IOS and ANDROID will play h.264 files, but I can’t figure out a setting to encode them so they actually work cross platform. Does anybody know how to encode for both Android and IOS using one file ?
p.s. I know all about html5 video and the fallback sources, I just don’t want to encode and host a new video for every device that comes down the pike.
-
What h.264 format loads on android AND IOS ?
6 décembre 2017, par JKirchartzTheoretically both IOS and ANDROID will play h.264 files, but I can’t figure out a setting to encode them so they actually work cross platform. Does anybody know how to encode for both Android and IOS using one file ?
p.s. I know all about html5 video and the fallback sources, I just don’t want to encode and host a new video for every device that comes down the pike.
-
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