Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (41)

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

  • C++ Video Streaming Library [on hold]

    13 mars 2018, par Ricardo Alves

    I’m getting a hardtime finding either the tools and/or documentation to enable a C++ application to stream a video.

    My scenario is as follows :

    • I have an already developed application that captures frames from a camera (using OpenCV) and processes information.
    • This application acts as a server (currently using gRPC library), that responds to requests from several clients (about the processed information we got from OpenCV).
    • Now, I also need to stream the image captured by OpenCV, so I have the byte array containing that information. The stream will be captured by several clients. One last note, all those clients will be on the same local network.

    From What I understood, there is two options for doing that : FFMPEG or libVLC. I already spent a few hours trying to find tutorials on how to send the video thourgh the network for those libraries, I’m even unsure if those tools can send a video that is captured and in memory. Can someone point me on the right direction ?

  • Using AForge.Net for commercial closed-source applications

    22 mars 2015, par ilay zeidman

    I have application that our company want to make a product from.
    The application uses AForge.Net and in the AForge.Video.FFMPEG.dll which is under
    GPL v3 license. You can see AForge.net license

    My question : can I use this dll in my product ? Do my product have to be under gpl3 and the source should be available ?

  • Video compression - DirectShow

    11 juin 2013, par Edoardo

    I'm generating a video (.AVI) that last about 1 minutes for 150MB of size on 320x240 mode.
    The size is really big, and I can't upload it efficiently.

    After the recording application has finished How could I compress the video without displaying a window ?
    I recently installed FFMPEG and with this command :

    ffmpeg -i input.avi -s 320x240 -vcodec msmpeg4v2 output.avi

    I can take the video to 3MB ! I must say fantastic !
    But... How could I do this from the inside of my application ?
    It would really be better doing this while the application is recording, whiutout installing ffmpeg, and not after.

    I'm now reading http://msdn.microsoft.com/en-us/library/windows/desktop/dd374572(v=vs.85).aspx
    Is this the right page to read ?