
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (40)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
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 -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (5539)
-
Revision 55c95f2d2c : VP8 for ARMv8 by using NEON intrinsics 09 Add loopfiltersimplehorizontaledge_ne
17 décembre 2013, par James YuChanged Paths :
Delete /vp8/common/arm/neon/loopfiltersimplehorizontaledge_neon.asm
Add /vp8/common/arm/neon/loopfiltersimplehorizontaledge_neon.c
Modify /vp8/vp8_common.mk
VP8 for ARMv8 by using NEON intrinsics 09Add loopfiltersimplehorizontaledge_neon.c
vp8_loop_filter_bhs_neon
vp8_loop_filter_mbhs_neon
Change-Id : I77f9721b20585da8bf3869a3850ff0ae4b4bfeea
Signed-off-by : James Yu <james.yu@linaro.org> -
Is there built in audio preprocessing within Android OS
28 août 2022, par Larry luI am running a dev team to build an Android application which the major feature is to record user voice and merge it into a long movie. It's a dub film application.


One struggle thing to my dev team is whether the Android OS pre-process the recorded auido file. because we want the very original audio data from the built in Microphone.
If there is a built-in pre-processing inside of Android OS keep updating some data of the recorded aduio file, we want to know what is changed. We can't find any official post from Android speaking about it but would like to confirm from professional.


Many thanks


-
PHP NetSSH2 command dropped after few minutes
1er février 2020, par HamedI have an Ubuntu 18.04 server,
I want to run a ffmpeg command via remote SSH with PHP.
After around 5 minutes process dropped,
but it wasn’t returned any error.
I’ve tested it directly from ssh and there wasn’t any problem.
Also I’ve increased SSH Connection timeout but my problem is still.$ssh = new Net_SSH2('IP_ADDRESS');
$ssh->login('root', 'PASSWORD') or die("Login failed");
$command = "sudo ffmpeg -y -i $path/$film -vf subtitles=$path/$subtitle -vcodec h264 -crf 25 $path/$subtitled";
$ssh->exec($command);