Recherche avancée

Médias (91)

Autres articles (59)

  • 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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (5881)

  • Possible to capture video and stream it to flash server on realtime in android ?

    26 octobre 2012, par gilush14

    I working on a project where the client side need to capture video and audio from the camera, use some library (proberly ffmpeg) to convert from mp4 to flv and send it to flash server on realtime,in the other side the client need to get flv and convert it to video type of android on real time. Is it possible to do ??

    Tnx

  • Shows video on android

    14 mars 2012, par rebel_UA

    How you shows video on android via rtsp and with drop-frame(skip-frame) functionality ?

    I think that I should use ffmpeg, but I don't know "How do it", please tell me.

  • ffmpeg watermarking error : video pixel format unknown, Parser not found for codec

    13 décembre 2011, par Sunil

    I am trying to watermark my video but I am getting pixel format and codec errors.

    I am using latest version of FFmpeg git-7d531e8 64-bit Static (Latest) (2011-12-12) from link http://ffmpeg.zeranoe.com/builds/

    I am using the below code to add watermark to my video.

    ffmpeg -i inputputfile.avi -target pal-vcd "movie=abc.png [Watermark] ; [in][Watermark] overlay=10:10 [out]" outputfile.avi.

    But i am receiving the error of video pixel format unknown and parser not found for codec error.

    Later, I changed by code to add codec and pixel format.

    ffmpeg -i inputputfile.avi -vcodec wmv3 -pxl_fmt yuv420p -target pal-vcd "movie=abc.png [Watermark] ; [in][Watermark] overlay=10:10 [out]" outputfile.avi.

    However I am still receiving the same error. Please help.