Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (40)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

Sur d’autres sites (5641)

  • download livestream real-time data

    15 juillet 2024, par Chenguang He

    I'm working on a project to design a RTMP server in Java to get livestream data and download to flv file. One requirement is that to capture the real-time data, I need to download the recording for every second instead of downloading entire recording when livestream stop. Is there any way to achieve it ? Thanks

    


    tried to download stream into byte array for every second and decode to flv using H.264 but didn't work.

    


  • avfilter/graphparser : Fix leaks when parsing inputs fails

    22 août 2020, par Andreas Rheinhardt
    avfilter/graphparser : Fix leaks when parsing inputs fails
    

    parse_inputs() uses a temporary linked list to parse the labeled inputs
    of a filter ; said linked list owns its elements (and their names). On
    success, the list of unlabeled inputs is appened to the end of the list
    of labeled inputs and the new list is returned ; yet on failures, nothing
    frees the already existing elements of the temporary linked list, leading
    to a leak.

    This can be triggered by e.g. using '-vf [v][' in the FFmpeg
    command-line tool.

    This leak seems to exist since 4e781c25b7b1955d1a9a0b0771c3ce1acb0957bd.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/graphparser.c
  • Revision e1d582d9f5 : Refactored the file dumping process so memory leaks are easier to avoid. Fixed a

    30 avril 2012, par Marc Noirot

    Changed Paths :
     Modify /src/dump.c


     Modify /src/dump_json.c


     Modify /src/dump_json.h


     Modify /src/dump_raw.c


     Modify /src/dump_raw.h


     Modify /src/dump_xml.c


     Modify /src/dump_xml.h


     Modify /src/dump_yaml.c


     Modify /src/dump_yaml.h



    Refactored the file dumping process so memory leaks are easier to avoid.
    Fixed a few function definitions.