
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 (65)
-
Les images
15 mai 2013 -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...)
Sur d’autres sites (6523)
-
Re-streaming RTSP with higher FPS
4 février 2021, par AndBondStyleI have RTSP stream with very low and non-constant FPS (varying between 0.2 ... 0.5). It is generated using
-skip_frame
flag to reduce network and CPU usage as much as possible :

ffmpeg -skip_frame nointra -i -vsync 2 -f rtsp 



As a consequence, it takes a very long time (1 ... 3 minutes) to connect to that stream and see first meaningful image. I want this stream to work with generic players without any tweaks, so my decision was to re-stream it with higher FPS (10, to be exact) :


ffmpeg -i -vf "fps=fps=10,setpts=N/(10*TB)" -f rtsp 



Not entirely sure how that command is working, but it somehow did the trick and reduced connection time to about 5 seconds. However, I suspect that it's outputting frames in bursts, which is not ideal. For example, if original low-fps stream contains 2 frames which are 3 seconds apart, my re-stream command (probably) does the following :


- 

- When the first input frame comes, output a bunch of frames as fast as possible
- Don't output anything for an entire 3 seconds
- When the second frame comes, output 3 * 10 = 30 frames as fast as possible
- Sleep again until new input frame shows up...










Is there a way to make my re-stream command output frames evenly (with a constant FPS) ? Or maybe there's another way to reduce RTSP connection (buffering ?) time ?


-
avfilter/f_ebur128 : add all sample rates support
4 mars 2021, par Paul B Maholavfilter/f_ebur128 : add all sample rates support
The magic constants come from the unofficial "ITU-R BS.1770-1 filter
specifications"¹ by Raiden (libebur128) which relies on "Parameter
Quantization in Direct-Form Recursive Audio Filters"² by Brian
Neunaber.The constants seem to include a quantization bias, for example :
Vb is supposed to be exactly √Vh in a high shelf filter
the Pre-filter Gain should likely be 4dB
Pre Q and RLB Q are respectively very close to √½ and ½
Those are not adjusted to prevent the values from drifting away from
the official specifications.An alternative to this approach would be to requantize on the fly as
proposed by pbelkner³, where the 48kHz code path would use the exact
specifications constants while derivating constants for other
frequencies.[1] : https://www.scribd.com/document/49991813/ITU-R-BS-1770-1-filters
[2] : https://www.scribd.com/document/6531763/Direct-Form-Filter-Parameter-Quantization
[3] : https://hydrogenaud.io/index.php?topic=86116.msg740092#msg740092 -
avformat/mxf : set stream frame rates for ST 422 essence containers
6 septembre 2022, par Pierre-Anthony Lemieuxavformat/mxf : set stream frame rates for ST 422 essence containers
The MXF demuxer does not currently set AVStream::avg_frame_rate and ::r_frame_rate
when J2K essence is wrapped according to SMPTE ST 422.Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>