
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (44)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (6027)
-
Revision 5182befa49 : ads2armasm_ms : Add an ALIGN 4 after ENDP This makes sure that labels for data s
19 mars 2014, par Martin StorsjoChanged Paths :
Modify /build/make/ads2armasm_ms.pl
ads2armasm_ms : Add an ALIGN 4 after ENDPThis makes sure that labels for data symbols directly after
functions get properly 4-byte-aligned (when the source is assembled
in thumb mode).Previously, if declaring a data symbol directly after a function, the
symbol could end up pointing to the unaligned address (if the total
size of the thumb function didn't end up being a multiple of 4). The
data in the symbol itself ended up aligned, but the symbol pointed to
the preceding unaligned position.That is, a source file looking like this :
— -
...
ENDPsymbol
DCD 0x12345678
— -could end up being assembled into
symbol :
xxxxx2 : 0000
xxxxx4 : 5678
xxxxx6 : 1234(This doesn't happen if the symbol label is on the same line as the
DCD directive.)By adding an ALIGN 4 directly after the ENDP we make sure the symbol
itself gets aligned properly.This isn't an issue with the original, untranslated arm source,
since it only is built in arm mode where all instructions are 4 byte,
and since the gnu assembler automatically adds the padding before the
symbol even in thumb mode.Change-Id : Iadbeebd656b0197e423e79a12a7d3ef8859cf445
-
How to determine the best way to split video and merge it back ?
6 novembre 2018, par Rami AlzebakLet’s say that I want to convert a Video to different resolution.
The workflow is as follows :
1- Splitting the video into n blocks
2- Convert the resolution of the block
3- Merge the blocksThe reason why I am doing is to achieve the conversion process on parallel workers (not necessarily threads )
The issue is I can’t determine what is the best number of blocks to split the video.
E.g : When splitting a large video into 10 blocks it will reduce the total time .
but when splitting a small one it may increase the total time .any hints or keys on the topic ?
-
How to record video across screens using FFmpeg on MacOS ?
2 novembre 2018, par 郭德纲I’m developing a MacOS application for recording screens, and in some cases, it needs to do cross-screen recording.
It records the screen by calling FFmpeg.
Let’s say I have four screens, each 1920x1080, with a total resolution of 3840x2160.Is it possible to record the screen by passing a coordinate and size to FFmpeg ? Same effect as the picture below.