Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (47)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • libavcodec/8bps : Check that line lengths fit within the buffer

    22 août 2022, par Michael Niedermayer
    libavcodec/8bps : Check that line lengths fit within the buffer
    

    Fixes : Timeout
    Fixes : undefined pointer arithmetic
    Fixes : 50330/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EIGHTBPS_fuzzer-5436287485607936

    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/8bps.c
  • doc/ffplay : put keystrokes to decrease and increase volume on the same line

    20 avril 2022, par Stefano Sabatini
    doc/ffplay : put keystrokes to decrease and increase volume on the same line
    

    Fix trac issue http://trac.ffmpeg.org/ticket/7832

    • [DH] doc/ffplay.texi
  • avformat/rtpdec_mpeg4 : Fix integer parameters size check in SDP fmtp line

    24 juillet 2019, par Olivier Maignial
    avformat/rtpdec_mpeg4 : Fix integer parameters size check in SDP fmtp line
    

    === PROBLEM ===

    I was trying to record h264 + aac streams from an RTSP server to mp4 file. using this command line :
    ffmpeg -v verbose -y -i "rtsp ://<ip>/my_resources" -codec copy -bsf:a aac_adtstoasc test.mp4

    FFmpeg then fail to record audio and output this logs :
    [rtsp @ 0xcda1f0] The profile-level-id field size is invalid (40)
    [rtsp @ 0xcda1f0] Error parsing AU headers
    ...
    [rtsp @ 0xcda1f0] Could not find codec parameters for stream 1 (Audio : aac, 48000 Hz, 1 channels) : unspecified sample format

    In SDP provided by my RTSP server I had this fmtp line :
    a=fmtp:98 streamType=5 ; profile-level-id=40 ; mode=AAC-hbr ; config=1188 ; sizeLength=13 ; indexLength=3 ; indexDeltaLength=3 ;

    In FFmpeg code, I found a check introduced by commit 24130234cd9dd733116d17b724ea4c8e12ce097a. It disallows values greater than 32 for fmtp line parameters.
    RFC-4566 (SDP : Session Description Protocol) do not give any limit of size on interger parameters given in an fmtp line.

    However, In RFC-6416 (RTP Payload Format for MPEG-4 Audio/Visual Streams) give examples of "profile-level-id" values for AAC, up to 55.

    === FIX ===

    As each parameter may have its own min and max values
    I propose to introduce a range for each parameter.
    For this patch I used RFC-3640 and ISO/IEC 14496-1 as reference for validity ranges.

    This patch fix my problem and I now can record my RTSP AAC stream to mp4.
    It has passed the full fate tests suite sucessfully.

    Signed-off-by : Olivier Maignial <olivier.maignial@smile.fr>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/rtpdec_mpeg4.c