Recherche avancée

Médias (91)

Autres articles (62)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (3107)

  • avcodec/tiff : Restrict tag order based on specification

    20 août 2020, par Michael Niedermayer
    avcodec/tiff : Restrict tag order based on specification
    

    "The entries in an IFD must be sorted in ascending order by Tag. Note that this is
    not the order in which the fields are described in this document."

    This way various dimensions, sample and bit sizes cannot be changed at
    arbitrary times which reduces the potential for bugs.
    The tag reading code also on various places assumes that numerically previous
    tags have already been parsed, so this needs to be enforced one way or another.

    If this commit causes problems with real world files which are not easy to fix
    then some other form of checks are needed to ensure the various dependencies
    in the tag reading are not violated.

    Fixes : out of array access
    Fixes : 24825/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TIFF_fuzzer-6326925027704832

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/tiff.c
  • movenc : Allow setting start_dts/start_cts before writing actual packets

    3 novembre 2015, par Martin Storsjö
    movenc : Allow setting start_dts/start_cts before writing actual packets
    

    By writing a zero-sized packet, the caller can communicate the
    start_dts/start_cts for the stream without actually writing
    the first packet.

    This allows doing random-access writing of fragments when the
    start dts of the stream isn’t zero, so that the edit list in the moov
    is written based on timestamps from the nominal start time signaled
    via the zero-sized packet, while the first proper packet written
    corresponds to a later fragment.

    To avoid potential unexpected behaviour, empty packets only set
    start_dts if the frag_discont flag is set.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc.c
  • Using ffplay with RTSP and source-specific multicast

    14 septembre 2022, par bigbrobrody

    We are trying to use ffplay to join a live video source in a network that uses IGMPv3 source-specific multicast.

    &#xA;

    If we use an SDP file this works fine and wireshark shows that ffplay correctly sends a source-specific multicast membership report.

    &#xA;

    However, when we try to join the same source using RTSP, ffplay seems to ignore the source-specific address contained in the SDP response to RTSP DESCRIBE and fails because it tries to join for any source. This is the command used :

    &#xA;

    ffplay -loglevel debug -rtsp_transport udp_multicast -protocol_whitelist rtp,udp,tcp -i rtsp://[username:password]@[ip address]/stream0

    &#xA;

    The SDP response as reported by ffplay includes :

    &#xA;

    a=source-filter: incl IN IP4 * [ssm ip address]

    &#xA;

    The only error reported by ffplay is :

    &#xA;

    Failed to parse interval end specification &#x27;&#x27;

    &#xA;

    Wireshark shows that ffplay is not performing an SSM join :

    &#xA;

    Membership Report / Join group [group IP address] for any sources

    &#xA;

    Further details in the screenshot below. Are we doing something wrong, is this a feature of ffplay or a potential bug ?

    &#xA;

    I note that libavformat/rtsp.h contains the comment /** The following are used only in SDP, not RTSP */ against code for sdp port, source-specific multicast addresses, etc. I’m not sure if that hints at our issue being because of a feature in ffmpeg.

    &#xA;

    ffplay using rtsp and ssm

    &#xA;