Recherche avancée

Médias (91)

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12347)

  • Revision 23ebacdb81 : Auto-adaptive encoder frame resizing logic Note : This feature is still in devel

    15 novembre 2014, par Adrian Grange

    Changed Paths :
     Modify /vp9/encoder/vp9_encoder.c


     Modify /vp9/encoder/vp9_encoder.h


     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_firstpass.h


     Modify /vp9/encoder/vp9_ratectrl.c


     Modify /vp9/encoder/vp9_ratectrl.h


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_speed_features.c



    Auto-adaptive encoder frame resizing logic

    Note : This feature is still in development.

    Add an option for the encoder to decide the resolution
    at which to encode each frame.

    Each KF/GF/ARF goup is tested to see if it would be
    better encoded at a lower resolution. At present, each
    KF/GF/ARF is coded first at full-size and if the coded
    size exceeds a threshold (twice target data rate) at
    the maximum active Q then the entire group is encoded
    at lower resolution.

    This feature is enabled in vpxenc by setting :
    —resize-allowed=1

    In addition, if the vpxenc command line also specifies
    valid frame dimensions using :
    —resize-width=XXXX & —resize_height=YYYY
    then *all* frames will be encoded at this resolution.

    Change-Id : I13f341e0a82512f9e84e144e0f3b5aed8a65402b

  • Anomalie #3404 (Nouveau) : Notice dans les révisions

    8 mars 2015, par Franck Dalot

    php 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 Givol

    In 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 ?