Recherche avancée

Médias (91)

Autres articles (23)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (5475)

  • Application Crashes With No Exception

    24 octobre 2017, par Frank Natoli

    Have a relatively complex C# Windows Forms application that makes use of C++ bridge DLL to call FFmpeg DLLS to concurrently write multiple MP4 files directly from imagery downloaded from real time cameras using a separate thread for each camera.

    On my Windows 7 development laptop, Toshiba Tecra with i7 vPro eight core CPU and 16GB RAM, and on customer laptop, application runs fine.
    But on customer desktop, configuration unknown, when the application finishes recording and begins downloading imagery from the real time cameras and thus begins calling FFmpeg DLLs, the application disappears without a trace, no exception message, no "program has stopped working", nothing. Normal program exit writes an "application exiting" message to a log file which is NOT happening, so I am reasonably certain the program is not normally exiting.
    What might result in a C# Windows Forms application crash with no exception report from Windows ?

  • h264 : drop redundant initialization in init()

    21 mars 2015, par Anton Khirnov
    h264 : drop redundant initialization in init()
    

    There is no real advantage to initializing any of those in init,
    assuming yuv420, before the real stream parameters are known.

    • [DBH] libavcodec/h264.c
  • How to add silent data when no audio stream is flowing

    29 décembre 2020, par Edqe

    This is what I'm currently doing : How to insert silence pcm data when there is no data piping in

    


    Since fluent ffmpeg can use ffmpeg flags, is there a way to put silent data when no actual audio stream is received.

    


    Example :
    
/ represents real audio data
    
- represents silent
    
/////////////////-----///////----//////////
    
Receive audio    cut  data   cut data
    
From example above, put silent data on cut when no real data is received (I hope that explains a bit clearer)

    


    I found this discussion, does this work for the example above ? If so, how can I implement it ?

    


    Thanks in advance !