Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (42)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5583)

  • Evolution #2426 : Utilisation des fonctionnalitées de cache du serveur web

    23 novembre 2011, par Guillaume nom

    Version améliorée : ExpiresActive On ExpiresDefault "access plus 30 seconds" ExpiresByType text/html "access plus 60 seconds" ExpiresByType application/xhtml+xml "access plus 60 seconds" ExpiresByType application/javascript "access 2 weeks" ExpiresByType application/x-javascript "access 2 weeks" (...)

  • Create a video stream from bitmap [on hold]

    24 novembre 2017, par Wijaya

    I’m developing a real time web application which takes sequence of images as input and stream it to multiple clients over internet. My C# application takes sequence of jpg images in 30 fps and converts it to a bitmap array. Application continually generates bitmaps.

    Since my application has to run on a windows server I can’t use ffserver (FFmpeg media server) for my purpose.

    My requirement is to create a video memory stream from a bitmap array and stream it to clients in real time.

    Any help would be really appreciated.

  • ffmpeg assert - throw exception instead of abort

    21 novembre 2011, par ronag

    I'm using ffmpeg in my C++ application.

    When trying to play certain files an assertion inside of ffmpeg fails, which causes it to call abort() which terminates my application. I do not want this behavior, rather I want to get the chance to recover, preferably through an exception.

    Anyone got any ideas as to how I can get around the problem with ffmpeg/assert potentially terminating my application ?

    EDIT :

    The only way I can think of right now is to change the ffmpeg assert macro so that it causes an access violation which I can catch through SEH exceptions. Ugly and potentially bad solution ?