Recherche avancée

Médias (91)

Autres articles (6)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

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

Sur d’autres sites (1990)

  • Why use sysconf(_SC_NPROCESSORS_CONF) to get the number of CPU cores in x264 ?

    5 novembre 2017, par bknieven

    I find x264 use sysconf(_SC_NPROCESSORS_CONF) instead of sysconf(SC_NPROCESSORS_ONLN) to get the number of CPU cores.

    Here is the code snippet in x264/common/cpu.c :

    ...
    #ifdef __ANDROID__
       // Android NDK does not expose sched_getaffinity
       return sysconf( _SC_NPROCESSORS_CONF );
    #else
       ...
    ....

    And I find the difference between _SC_NPROCESSORS_CONF and _SC_NPROCESSORS_ONLN in this manual :

    sysconf (_SC_NPROCESSORS_CONF) which returns the number of processors
    the operating system configured. But it might be possible for the
    operating system to disable individual processors and so the call
    sysconf (_SC_NPROCESSORS_ONLN) returns the number of processors which
    are currently online (i.e., available).

    I have two questions :

    1. What is the difference between "the number of processors the operating system configured" and "the number of processors which are currently online" ?
    2. Why x264 use _SC_NPROCESSORS_CONF in Android to get the number of CPU cores ?
  • avformat/mux : be less strict with bitstream filter failures

    31 octobre 2017, par James Almer
    avformat/mux : be less strict with bitstream filter failures
    

    This makes the autobsf feature behave the same as the manual
    bitstream filtering in ffmpeg.c

    Fixes ticket #6794

    Reviewed-by : rcombs
    Reviewed-by : Carl Eugen Hoyos <ceffmpeg@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mux.c
  • is it necessary in Anaconda for Matplotlib to install ffmpeg for animation saving ?

    2 mai 2018, par Vasyl Kolomiets

    For animation saving I have read some propositions
    1) manual installing ffmpeg this way :

     conda install -c conda-forge ffmpeg

    2) manual installing ImageMagick and changing matplotlib configuration file "matplotlibrc" this way :

    #animation.ffmpeg_args: ''         # Additional arguments to pass to ffmpeg
    #animation.avconv_path: 'avconv'   # Path to avconv binary. Without full path
                                      # $PATH is searched
    #animation.avconv_args: ''         # Additional arguments to pass to avconv
    #animation.mencoder_path: 'mencoder'
                                      # Path to mencoder binary. Without full path
                                      # $PATH is searched
    #animation.mencoder_args: ''       # Additional arguments to pass to mencoder
    #animation.convert_path: 'convert' # Path to ImageMagick's convert binary.
    animation.convert_path: F:\Games\ImageMagick-7.0.7-Q16\magick.exe
                                      # On Windows use the full path since convert
                                      # is also the name of a system tool.

    where line with pass to installed ImageMagick was added manually

    animation.convert_path: F:\Games\ImageMagick-7.0.7-Q16\magick.exe

    Two questions :
    1 - what way is better for Anaconda ?
    2 - really Anaconda has no better way ????