Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (18)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5783)

  • ffmpeg : Use filter graph output frame rate also for frame duration estimation

    16 janvier 2015, par Michael Niedermayer
    ffmpeg : Use filter graph output frame rate also for frame duration estimation
    

    Previously the duration was sometimes wrong, this addition
    limits the value and improves which frames are choosen when
    reducing the frame rate

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

    • [DH] ffmpeg.c
  • Revision 31c7a9b174 : Fix the VP9 encoding unit test failure on ARM. The cause is because VP9 encodin

    10 avril 2014, par hkuang

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



    Fix the VP9 encoding unit test failure on ARM.

    The cause is because VP9 encoding use vp8_vpxyv12_extendframeborders_neon
    on arm which only extend boarder size 32. But VP9's border size is 160

    Change-Id : I1ff7e945344a658af862beb1197925e677e8ff57

  • Difficulty linking filter graph with ffmpeg_next (rust-ffmpeg)

    2 mai 2023, par anvlkv

    I'm using rust ffmpeg_next::filter::Graph to create a concat filter which should accept 3x2 inputs

    &#xA;

    filter.add(&amp;filter::find("buffersink").unwrap(), "out_v", "").unwrap();&#xA;filter.add(&amp;filter::find("abuffersink").unwrap(), "out_a", "").unwrap();&#xA;filter.add(&amp;filter::find("buffer").unwrap(), "in_v_0", &amp;args_v0).unwrap();&#xA;filter.add(&amp;filter::find("buffer").unwrap(), "in_v_1", &amp;args_v1).unwrap();&#xA;filter.add(&amp;filter::find("buffer").unwrap(), "in_v_2", &amp;args_v2).unwrap();&#xA;filter.add(&amp;filter::find("abuffer").unwrap(), "in_a_0", &amp;args_a0).unwrap();&#xA;filter.add(&amp;filter::find("abuffer").unwrap(), "in_a_1", &amp;args_a1).unwrap();&#xA;filter.add(&amp;filter::find("abuffer").unwrap(), "in_a_2", &amp;args_a2).unwrap();&#xA;filter.input("out_v", 0).unwrap()&#xA;   .input("out_a", 0).unwrap()&#xA;   .output("in_v_0", 0).unwrap()&#xA;   .output("in_v_1", 0).unwrap()&#xA;   .output("in_v_2", 0).unwrap()&#xA;   .output("in_a_0", 0).unwrap()&#xA;   .output("in_a_1", 0).unwrap()&#xA;   .output("in_a_2", 0).unwrap()&#xA;   .parse("[in_v_0][in_a_0][in_v_1][in_a_1][in_v_2][in_a_2]concat=n=3:v=1:a=1[out_v][out_a]")&#xA;   .unwrap();&#xA;filter.validate().expect("invalid filter");&#xA;

    &#xA;

    My validate call fails with Output pad "default" with type audio of the filter instance "in_a_0" of abuffer not connected to any destination

    &#xA;

    It seems it may have to do with ffmpeg_next using avfilter_graph_parse_ptr as this stackoverflow suggests

    &#xA;

    I've tried using avfilter_graph_parse2 and adding all my sinks and buffers to the spec :

    &#xA;

    buffer=width=1280:height=720:pix_fmt=yuv420p:time_base=1/15360:sar=1[in_v_0];&#xA;abuffer=time_base=1/48000:sample_rate=48000:sample_fmt=fltp:channel_layout=0x3[in_a_0];&#xA;buffer=width=1280:height=720:pix_fmt=yuv420p:time_base=1/15360:sar=1[in_v_1];&#xA;abuffer=time_base=1/48000:sample_rate=48000:sample_fmt=fltp:channel_layout=0x3[in_a_1];&#xA;buffer=width=1280:height=720:pix_fmt=yuv420p:time_base=1/15360:sar=1[in_v_2];&#xA;abuffer=time_base=1/48000:sample_rate=48000:sample_fmt=fltp:channel_layout=0x3[in_a_2];&#xA;[in_v_0][in_a_0][in_v_1][in_a_1][in_v_2][in_a_2]concat=n=3:v=1:a=1[out_v][out_a];[out_v]buffersink;&#xA;[out_a]abuffersink&#xA;

    &#xA;

    Which then fails with Input pad "default" with type video of the filter instance "out_v" of buffersink not connected to any source

    &#xA;

    I hope someone can help me understand...

    &#xA;