Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (34)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5535)

  • avformat/mxfenc : Never set codec_ul UID to NULL

    28 février 2020, par Andreas Rheinhardt
    avformat/mxfenc : Never set codec_ul UID to NULL
    

    mxf distinguishes codec profiles by different UIDs and therefore needs
    to check that the input is actually compatible with mxf (i.e. if there
    is a defined UID for it). If not, then sometimes the UID would be set to
    NULL and writing the (video) packet would fail. Yet the following audio
    packet would trigger writing the header (which has been postponed because
    the UID is not known at the start) and if the UID is NULL, this can lead
    to segfaults. This commit therefore stops setting the UID to NULL if the
    input is incompatible with mxf (it has initially been set to a generic
    value in mxf_write_header()).

    Fixes #7993.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/mxfenc.c
  • avformat/webmdashenc : Don't segfault on invalid arguments

    18 mai 2020, par Andreas Rheinhardt
    avformat/webmdashenc : Don't segfault on invalid arguments
    

    The current parsing process for adaptation_sets does not guarantee
    every adaptation set to contain at least one stream, because the loop
    exits immediately as soon as the end of the string has been reached,
    without checking whether the currently active adaptation set group is
    lacking a stream. This would lead to segfaults lateron as the rest of
    the code presumed that every adaptation set contains a stream. This
    commit fixes this by erroring out when the last adaptation set group
    is incomplete.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/webmdashenc.c
  • How to build FFmpeg executable for commercial use using Windows ?

    18 octobre 2024, par Xel Naga

    I'm developing a commercial software and it requires ffmpeg.exe to run properly.

    &#xA;&#xA;

    I'm aware of the FFmpeg legal page (https://www.ffmpeg.org/legal.html) and want to Compile FFmpeg without "—enable-gpl" and without "—enable-nonfree". However the compilation guide (https://trac.ffmpeg.org/wiki/CompilationGuide) seems neglected because some links lead to 404 pages, and some required programs didn't install properly on my PC, crashed in fact.

    &#xA;&#xA;

    I tried all the ways to compile but could not succeed. I use Windows 8.1 and I'm not comfortable with minGW, MSYS, MSVC.

    &#xA;&#xA;

    How can I compile FFmpeg executable for commercial use, or better, how can I download ffmpeg.exe (compiled for commercial use) without hassle ?

    &#xA;