Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (11190)

  • fftools/ffplay : fix typo in frame_queue_destory

    5 juillet 2023, par QiTong Li
    fftools/ffplay : fix typo in frame_queue_destory
    

    Not sure if the function naming frame_queue_destory is intended because
    "destory" is not really a word. Changing it to "destroy" makes more sense.

    Signed-off-by : QiTong Li <liqitong@163.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] fftools/ffplay.c
  • lavfi/dnn_backend_openvino.c : Spelling Correction in OpenVino Backend

    23 avril 2021, par shubhanshu02
    lavfi/dnn_backend_openvino.c : Spelling Correction in OpenVino Backend
    

    Correct Spelling of the word `descibe` to `describe`
    in init_model_ov

    Signed-off-by : shubhanshu02 <shubhanshu.e01@gmail.com>

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
  • Multi-Threaded Video Decoder Leaks Memory

    3 janvier 2018, par Cethric

    My intention is to create a relatively simple video playback system to be used in a larger program that I am working on. Relevant code to the video decoder is here. The best I have been able to do so far is narrow down the memory leak to this section of code (or rather I have not noticed any memory leaks occurring when video is not used).

    This is probably a very broad question how ever I am unsure of the scope of the issue I am having and as such of how to word my question.

    What I want to know is what have I missed or done wrong that has lead to a noticeable memory leak (by noticeable I mean I can watch memory usage climb megabytes per minute). I have tried ensured that every allocation that I make is matched by a deallocation.

    EDIT 1
    This is to be built on a Windows 10 machine running MSYS2 (MinGW64)