
Recherche avancée
Autres articles (52)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)
Sur d’autres sites (8711)
-
Anomalie #3404 (Nouveau) : Notice dans les révisions
8 mars 2015, par Franck Dalotphp 5.6.4
prefix des tables : spipdev2
SPIP 3.1.0-alpha [21929]Si on fait la création d’un article avec une image dedans, puis que l’on active les révisions partout et que l’on retourne voir l’article en question :
Notice : Undefined index : jointure_auteurs in C :\EasyPHP-DevServer-14.1VC11\data\localweb\projects\spipdev2\plugins-dist\revisions\inc\revisions.php on line 732
Notice : Undefined index : jointure_documents in C :\EasyPHP-DevServer-14.1VC11\data\localweb\projects\spipdev2\plugins-dist\revisions\inc\revisions.php on line 732
Notice : Undefined index : jointure_mots in C :\EasyPHP-DevServer-14.1VC11\data\localweb\projects\spipdev2\plugins-dist\revisions\inc\revisions.php on line 732
Notice : Undefined index : formats_graphiques in C :\EasyPHP-DevServer-14.1VC11\data\localweb\projects\spipdev2\plugins-dist\medias\inc\documents.php on line 153 -
Rotate affinity values in a batch script for loop
18 mars 2015, par Albert Amir GivolIn windows 8.1, I’m converting my videos to HEVC using FFmpeg, using this simple batch script :
md hevc
start /affinity 0x7 for %%k in (*.mkv *.mp4) do ffmpeg -i "%%k" -map 0 -c copy -c:v libx265 -y "hevc\%%~nk.mkv"I’m using the Start /affinity to limit FFmpeg to 3/4 threads, otherwise my computer gets chocked. It works fine, except it uses the same affinity value for an entire folder, and I’d rather rotate the affinity values between 0x7, 0xb, 0xd and x0e, so that it changes the active cores each time another video starts. I’ve tried putting the start /affinity in different positions in the command line, and I’ve tried running a loop within a loop, but nothing I’ve tried has worked. Any ideas ?
-
h264 : use the correct SPS during PPS parsing
6 mars 2015, par Anton Khirnov