Recherche avancée

Médias (91)

Autres articles (30)

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

  • Disable output in subprocess call ffmpeg

    16 juillet 2021, par RandomPersonOnline

    I am currently using the following command in python to convert my .webm file to .ogg

    


    subprocess.call(['ffmpeg', '-i', songfile, songfile + ".ogg"])


    


    This prints out a bunch of output which I don't require, But I cannot disable it using this command.

    


    subprocess.call(['ffmpeg', ' -loglevel quiet','-i', songfile, songfile + ".ogg"])


    


    I get error

    


    Unrecognized option '-log-level quiet'.


    


    How can I disable ffmpeg output here ?

    


  • avcodec/av1_parse : simplify memset call

    15 octobre 2019, par James Almer
    avcodec/av1_parse : simplify memset call
    

    Removed (new_size - pkt->nals_allocated) because this value is always 1
    during the call.
    Based on commit 78b86c30d3860135042505dd4a9cbd95c4e6257d.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/av1_parse.c
  • How does one go about undoing an avformat_seek_file call in libavcodec ?

    2 juillet 2020, par John Allard

    I have an application written around libavcodec that sometimes attempts to seek ahead in a video while performing some work. The call to avformat_seek_file can only seek to a keyframe, so sometimes I end up in a situation where it ends up seek backwards from my current position in the decoding routine causing me to have to repeat work. For example, if I'm on frame 150 and I want to seek to frame 200, but the only key frames in the file are on frames 1 and 100, this call will have me seek back to frame 100, meaning I now have to decode 100 frames to get to 200 instead o 50 frames to get to 200 from my original decoding position of frame 150.

    &#xA;

    Is there a way for me to tell avformat_seek_file to undo its last seek and reset me to my previous location ? Is there some other way for me to "save" my decoding state to undo this wrongful seek manually ?

    &#xA;

    edit - it should be noted that my videos are always h264 encoded in an mp4 container.

    &#xA;