Recherche avancée

Médias (91)

Autres articles (41)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (7904)

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