Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (48)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5285)

  • Stream video from python code(ffmpeg)

    31 janvier 2018, par R-Cronj

    I have video frames from below code

    (grabbed, frame) = camera.read()

    Now I want to stream this live video from my python code.

    I plan on using ffmpeg but please do tell me if I can do this with another tool.

    I have tried this but didn’t work :

    subprocess.call(["ffmpeg", "-f", "rawvideo", "-pixel_format", "bgr24", "-video_size", "544x576", "-framerate", "25", "-i", "-", "http://localhost:8090/feed1.ffm"], stdin=frame.tostring())
  • segmnet time in ffmpeg c code

    10 mai 2018, par TraXxX

    I’m using remuxing.c

    I’m trying to add segment option to code like this :

    AVDictionary* headerOptions = NULL;
    av_dict_set(&headerOptions, "segment_time", "10", 0);
    avformat_write_header(&ofmt_ctx, &headerOptions);

    it’s not working

  • avformat_open_input return value, error code

    25 juillet 2013, par Jar

    I try to use ffmpeg library to decode video and get stream.
    I'm using avformat_open_input.
    I get the return value -2 (it means no such file) when the input file is url, such as rtmp://xxx, and I get the return value -1052488119 when the input file is mp4 video.

    I'm not understand what error code -1052488119 means and why the input file is url I got so such file ?

    Please help me to figure out what happen.
    Thanks very much.