Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (9054)

  • ffplay : do not block audio thread on WIN32

    8 février 2015, par Marton Balint
    ffplay : do not block audio thread on WIN32
    

    The windows SDL audio driver plays the old data in the buffer in a loop if it
    is not updated in time. So instead of waiting for data and blocking the the
    audio thread, return silence if no data is available.

    Should fix ticket #2289.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c
  • hwcontext_dxva2 : support D3D9Ex

    10 février 2017, par wm4
    hwcontext_dxva2 : support D3D9Ex
    

    D3D9Ex uses different driver paths. This helps with "headless"
    configurations when no user logs in. Plain D3D9 device creation will
    fail if no user is logged in, while it works with D3D9Ex.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    Merges Libav commit c2f97f0508708.

    • [DH] libavutil/hwcontext_dxva2.c
  • ffmpeg - cuda encode - OpenEncodeSessionEx failed : out of memory

    31 janvier 2020, par VelDev

    I’m having a problem with ffmpeg video encoding using GPU (CUDA).

    I have 2x nVidia GTX 1050 Ti

    The problem comes when i try to do multiple parallel encodings. More than 2 processes and ffmpeg dies like this :

    [h264_nvenc @ 0xcc1cc0] OpenEncodeSessionEx failed: out of memory (10)

    The problem is nvidia-smi shows there are a lot of resources available on the gpu :

    +-----------------------------------------------------------------------------+
    | NVIDIA-SMI 384.66                 Driver Version: 384.66                    |
    |-------------------------------+----------------------+----------------------+
    | GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
    | Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
    |===============================+======================+======================|
    |   0  GeForce GTX 105...  Off  | 00000000:41:00.0 Off |                  N/A |
    | 40%   37C    P0    42W /  75W |    177MiB /  4038MiB |     30%      Default |
    +-------------------------------+----------------------+----------------------+
    |   1  GeForce GTX 105...  Off  | 00000000:42:00.0 Off |                  N/A |
    | 40%   21C    P8    35W /  75W |     10MiB /  4038MiB |      0%      Default |
    +-------------------------------+----------------------+----------------------+

    the second GPU doesn’t seem to be used at all, and there’s more than enough memory left on the first one, to support the 3rd file.

    Any ideas would be extremely helpful !