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 (6508)

  • avcodec/bink : Provide non NULL context to av_log()

    31 décembre 2018, par Michael Niedermayer
    avcodec/bink : Provide non NULL context to av_log()
    

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/bink.c
  • avcodec/mss2 : Provide non NULL context to av_log()

    31 décembre 2018, par Michael Niedermayer
    avcodec/mss2 : Provide non NULL context to av_log()
    

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mss2.c
  • MOBILE FFMPEG filter complex with yup420 output issues

    9 avril 2021, par najam ulhassan

    I am creating video by images using mobile-ffmpeg using complex-filter and format yuv420, I am having problem width is not divisible by 2(601*900) like so.&#xA;This error is occuring for some video creations for many it is working fine.&#xA;My filter complex is scaling, rotating and overlaying the input images.&#xA;Here is ffmpeg command :

    &#xA;

    ffmpeg -loop 1 -t 10 -i background.jpg -s 700x900 &#xA;&#xA;-loop 1 -i img1.png -loop 1 -i img2.jpg &#xA;-loop 1 -i img3.jpg&#xA;&#xA;-filter_complex&#xA;[1]scale=eval=frame:w=&#x27;72&#x27;:h=&#x27;72&#x27;[img1];&#xA;[2]scale=eval=frame:w=&#x27;598&#x27;:h=&#x27;382&#x27;,rotate=a=0*PI/180:c=black@0:oh=&#x27;roth(0*PI/180)&#x27;:ow=&#x27;rotw(0*PI/180)&#x27;:bilinear=1,fade=in:st=2:d=3:alpha=1[img2];&#xA;[3]scale=eval=frame:w=&#x27;598&#x27;:h=&#x27;382&#x27;,rotate=a=0*PI/180:c=black@0:oh=&#x27;roth(0*PI/180)&#x27;:ow=&#x27;rotw(0*PI/180)&#x27;:bilinear=1,fade=in:st=3:d=4:alpha=1[img3];&#xA;[0][img1]overlay=W-w-5:5:format=auto:shortest=1:format=auto[bg1];&#xA;[bg1][img2]overlay=44:500:shortest=1:format=auto[bg2];&#xA;[bg2][img3]overlay=44:22:shortest=1:format=auto,format=yuv420p" &#xA;&#xA;output.mp4&#xA;

    &#xA;

    Having some searches about it and found -vf filter can adjust the width:height but it is restricted not to use with filter-complex...

    &#xA;

    My error logs :

    &#xA;

     E/mobile-ffmpeg: [libx264 @ 0xbd8c8800] &#xA; E/mobile-ffmpeg: width not divisible by 2 (601x901)&#xA; E/mobile-ffmpeg: Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height&#xA;

    &#xA;