
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (111)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Other interesting software
13 avril 2011, parWe 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 (8441)
-
doc/ffplay : put keystrokes to decrease and increase volume on the same line
20 avril 2022, par Stefano Sabatinidoc/ffplay : put keystrokes to decrease and increase volume on the same line
Fix trac issue http://trac.ffmpeg.org/ticket/7832
-
avformat/rtpdec_mpeg4 : Fix integer parameters size check in SDP fmtp line
24 juillet 2019, par Olivier Maignialavformat/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.mp4FFmpeg 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 formatIn 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> -
avcodec/scpr : Check y in first line loop in decompress_i()
11 mai 2017, par Michael Niedermayeravcodec/scpr : Check y in first line loop in decompress_i()
Fixes : out of array access
Fixes : 1478/clusterfuzz-testcase-minimized-5285486908145664Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>