Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (62)

  • 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 tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7886)

  • Set rtsp_flags to listen ffmpeg in c code

    6 mai 2015, par Ahmed_Faraz

    I am trying to create a client client server application to stream and then receive video using rtsp using ffmpeg libraries. I am done with the client part which is streaming the video and i can receive the video on ffplay using following command

    ffplay -rtsp_flags listen rtsp://127.0.0.1:8556/live.sdp

    My problem is that i want receive the video in a c code and i need to set rtsp_flags option in it. Can anyone plz help ??
    P.S. i cannot use ffserver because i am working on windows and ffserver is not available for windows as far as i knw

  • Anomalie #3851 : Référencer code.plugins.spip.net

    7 février 2017, par b b

    Oui, ajouter un lien vers code.plugins.spip.net depuis code.spip.net ;)

  • Catching native code exceptions in .NET

    30 avril 2014, par Acrotygma

    I’m currently working with ffmpeg with a proprietary wrapper and I need to catch native code exceptions that sometimes occur during transcoding procedures etc.

    I already read those questions/answers :

    https://stackoverflow.com/questions/10517199/cant-catch-native-exception-in-managed-code
    https://stackoverflow.com/questions/150544/can-you-catch-a-native-exception-in-c-sharp-code

    However, they were not really helpful as the exceptions occur not during a function I call, but in a completely different thread that runs side-by-side in the ffmpeg library and were thrown by additional components such as DirectX. This is somehow a real issue as the exceptions tear down my whole application !

    Any help is really appreciated.