
Recherche avancée
Autres articles (28)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (4341)
-
what is the name of the video codec that could dynamic adjust resolution and FPS
29 novembre 2015, par user454083I remember that there is video codec could dynamic adjust frame rate and resolution.
For example, sender side, always send a base profile with QQVGA with 15 FPS, and receiver side always could at least decode QQVGA with 15 FPS. As long as there is more capacity in the bandwidth or CPU process time, sender side could add more details on the pixel of each frame. For example, add more details in the QQVGA, then new frame can be decoded as QVGA or VGA. And insert frames between frames in base profile. The 15 FPS can be 30 FPS etc..
I wonder what is the name of this codec. If I remember it correctly, YouTube uses this codec and Google holds the patent of this video codec.If someone could remind me what is the name of this codec and more details of this codec. thanks
-
How to decrease latency of images based live streaming ?
18 octobre 2020, par XiaofengI need to encode and stream live images, but there is always about a 3s latency, how to decrease it ?


The live stream is generated by the following command


ffmpeg -analyzeduration 0 -probesize 32 -i h264_rtsp_url \
 -vf fps=1 -fflags nobuffer -fflags flush_packets -f mjpeg - \
 | ffmpeg -r 1 -f image2pipe -analyzeduration 0 -probesize 32 -i - \
 -c:v libx264 -pix_fmt yuv420p -tune zerolatency \
 -force_key_frames "expr:gte(t,n_forced*1)" \
 -flags low_delay -fflags nobuffer -fflags flush_packets \
 -profile:v main -preset medium -r 15 \
 -f rtp_mpegts rtp://127.0.0.1:4001



Changing preset from
medium
toultrafast
does not affect the result, still 3s latency.

And I am using
mpv
to play the streams,
The stream encoded by images :

mpv --profile='low-latency' \
 --untimed --no-cache --no-demuxer-thread --vd-lavc-threads=1 \
 rtp://127.0.0.1:4001



The origin stream :


mpv --profile='low-latency' \
 --untimed --no-cache --no-demuxer-thread --vd-lavc-threads=1 \
 h264_rtsp_url



[1] https://trac.ffmpeg.org/wiki/StreamingGuide


-
avcodec/vc1dec : Re-order init to avoid initting hwaccel too early
8 août 2015, par Philip Langdaleavcodec/vc1dec : Re-order init to avoid initting hwaccel too early
At least for vdpau, the hwaccel init code tries to check the video
profile and ensure that there is a matching vdpau profile available.If it can’t find a match, it will fail to initialise.
In the case of wmv3/vc1, I observed initialisation to fail all the
time. It turns out that this is due to the hwaccel being initialised
very early in the codec init, before the profile has been extracted
and set.Conceptually, it’s a simple fix to reorder the init code, but it gets
messy really fast because ff_get_format(), which is what implicitly
trigger hwaccel init, is called multiple times through various shared
init calls from h263, etc. It’s incredibly hard to prove to my own
satisfaction that it’s safe to move the vc1 specific init code
ahead of this generic code, but all the vc1 fate tests pass, and I’ve
visually inspected a couple of samples and things seem correct.Signed-off-by : Philip Langdale <philipl@overt.org>