Recherche avancée

Médias (91)

Autres articles (103)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (13011)

  • FFmpeg split multiple files with logo overlay

    25 juillet 2014, par Onur Öztürk

    i want to add logo overlay in video. and also i want to split videos multiple mp4 files

    i can add logo with below code

    ffmpeg -i in.mp4 -i logo.png -filter_complex "[0:v][1:v]overlay=0:620" out.mp4

    also i can split the video to multiple files with below code

    ffmpeg -i in.mp4 -vcodec copy -acodec copy -ss 0.05 -t 20 out1.mp4 -vcodec copy -acodec copy -ss 20 -t 15 out2.mp4

    but i want to add logo and split them with one ffmpeg code

    i use below code but i get error

    ffmpeg -i in.mp4 -i logo.png -filter_complex "[0:v][1:v]overlay=0:620" -vcodec copy -acodec copy -ss 0 -t 20 out1.mp4 -vcodec copy -acodec copy -ss 20 -t 15 out2.mp4

    How can i do two jobs with one ffmpeg code

  • x86 : hevc_mc : split differently calls

    24 août 2014, par Christophe Gisquet
    x86 : hevc_mc : split differently calls
    

    In some cases, 2 or 3 calls are performed to functions for unusual
    widths. Instead, perform 2 calls for different widths to split the
    workload.

    The 8+16 and 4+8 widths for respectively 8 and more than 8 bits can’t
    be processed that way without modifications : some calls use unaligned
    buffers, and having branches to handle this was resulting in no
    micro-benchmark benefit.

    For block_w == 12 (around 1% of the pixels of the sequence) :
    Before :
    12758 decicycles in epel_uni, 4093 runs, 3 skips
    19389 decicycles in qpel_uni, 8187 runs, 5 skips
    22699 decicycles in epel_bi, 32743 runs, 25 skips
    34736 decicycles in qpel_bi, 32733 runs, 35 skips

    After :
    11929 decicycles in epel_uni, 4096 runs, 0 skips
    18131 decicycles in qpel_uni, 8184 runs, 8 skips
    20065 decicycles in epel_bi, 32750 runs, 18 skips
    31458 decicycles in qpel_bi, 32753 runs, 15 skips

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/x86/hevcdsp_init.c
  • Revision fee045d13a : Disable adaptive pred filter for non-split mode If sf->disable_split_mask is DI

    24 février 2014, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_onyx_if.c



    Disable adaptive pred filter for non-split mode

    If sf->disable_split_mask is DISABLE_ALL_SPLIT, disable
    sf->adaptive_pred_interp_filter to avoid unnecessary operations.

    Change-Id : Icb59174b2f4e9a3c3c16a696deb8018e5bd999eb