Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (18)

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

  • 1.3.17

    11 mai 2011, par Jack Moore

    m README.md m colorbox/jquery.colorbox-min.js m colorbox/jquery.colorbox.js 1.3.17 * Added properties "top", "bottom", "left" and "right" to specify a position relative to the viewport, rather than using the default centering. * Added property "data" to specify GET or POST data when using Ajax. (...)

  • lavfi/tonemap_vaapi : By default use bt709 for output frame

    18 mars 2024, par Haihao Xiang
    lavfi/tonemap_vaapi : By default use bt709 for output frame
    

    By default don't use the color properties from input frame as output
    frame properties when performing HDR to SDR conversion

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_tonemap_vaapi.c
  • Append video files of different width, height

    28 novembre 2013, par Jatin

    I am building an application where user can record a screencast. Integral part of application is that, one can pause recording and resume it later any time (the session is maintained on server side).

    So say when user starts recording the screen, the width and height is :1024*768. Using xuggler (java wrapper for ffmpeg), I am able to generate a video. But say later he is on a different system and wishes to resume screen cast, then resolution changes to 1080 * 720. At this stage, I record it seperately and then try merging two files. But because the width & height are not same, I get the below exception :

    16:38:03.916 [main] WARN com.xuggle.xuggler - Got error : picture is
    not of the same width as this Coder
    (../../../../../../../csrc/com/xuggle/xuggler/StreamCoder.cpp:1430)
    Exception in thread "main" java.lang.RuntimeException : failed to
    encode video

    What is the best way to solve this Issue. The user can be on screen with different width and height. How do I merge (or any other alternatives, probably append) video files of different width and height ?