
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (47)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le profil des utilisateurs
12 avril 2011, parChaque 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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (5540)
-
Youtube stream of looping JPG stops randomly
6 juillet 2021, par timw99Hi I'm fairly new at ffmpeg.


I'm currently trying to get a low FPS Youtube stream working over RTMP using a JPG on loop which content gets changed using a NodeJS script periodically. I'm using the following command to stream (variable 3 is my stream key) :


ffmpeg -re -loop 1 -pix_fmt bgr24 -framerate 5 -i img/now.jpg -re -stream_loop -1 -i output.mp3 -f flv -vcodec libx264 -profile:v main -g 60 -keyint_min 30 -b:v 400k -minrate 400k -maxrate 400k -preset ultrafast -tune zerolatency -bufsize 2000k rtmp://a.rtmp.youtube.com/live2/$3



There's multiple things wrong here. The bitrate doesn't actually stay at 400k/s. It just goes to around 200-1000k and then just starts decreasing until the stream stops (usually at around 200-300k bitrate). It still seems like data is being sent (bitrate and current FPS are still updated (though they're very low) and speed goes parabolic. The frame counter itself just stops and Youtube doesn't continue streaming. See example :


frame= 515 fps=5.0 q=12.0 size= 5803kB time=00:01:42.84 bitrate= 462.3kbits/
frame= 518 fps=5.0 q=11.0 size= 5824kB time=00:01:43.41 bitrate= 461.3kbits/
frame= 519 fps=5.0 q=11.0 size= 5838kB time=00:01:43.92 bitrate= 460.2kbits/
frame= 519 fps=5.0 q=11.0 size= 5838kB time=00:01:44.42 bitrate= 457.9kbits/
frame= 519 fps=4.9 q=11.0 size= 5838kB time=00:01:44.92 bitrate= 455.8kbits/
frame= 519 fps=4.9 q=11.0 size= 5838kB time=00:01:45.43 bitrate= 453.6kbits/
frame= 519 fps=4.9 q=11.0 size= 5838kB time=00:01:45.93 bitrate= 451.4kbits/
frame= 519 fps=4.9 q=11.0 size= 5838kB time=00:01:46.44 bitrate= 449.3kbits/
frame= 519 fps=4.8 q=11.0 size= 5838kB time=00:01:46.94 bitrate= 447.2kbits/
frame= 519 fps=4.8 q=11.0 size= 5838kB time=00:01:47.44 bitrate= 445.1kbits/
frame= 519 fps=4.8 q=11.0 size= 5838kB time=00:01:47.95 bitrate= 443.0kbits/
frame= 519 fps=4.8 q=11.0 size= 5838kB time=00:01:48.45 bitrate= 440.9kbits/
frame= 519 fps=4.8 q=11.0 size= 5838kB time=00:01:48.96 bitrate= 438.9kbits/
frame= 519 fps=4.7 q=11.0 size= 5838kB time=00:01:49.46 bitrate= 436.9kbits/
frame= 519 fps=4.7 q=11.0 size= 5838kB time=00:01:49.96 bitrate= 434.9kbits/
frame= 519 fps=4.7 q=11.0 size= 5838kB time=00:01:50.44 bitrate= 433.0kbits/
frame= 519 fps=4.7 q=11.0 size= 5838kB time=00:01:50.95 bitrate= 431.0kbits/
frame= 519 fps=4.7 q=11.0 size= 5838kB time=00:01:51.45 bitrate= 429.1kbits/
frame= 519 fps=4.6 q=11.0 size= 5838kB time=00:01:51.96 bitrate= 427.1kbits/
frame= 519 fps=4.6 q=11.0 size= 5838kB time=00:01:52.46 bitrate= 425.2kbits/
frame= 519 fps=4.6 q=11.0 size= 5838kB time=00:01:52.99 bitrate= 423.2kbits/



I'm using a Digital Ocean VPS to run it, but the same happens on my own desktop which definitely has the hardware for a simple stream like this. Could it have something to do with me replacing the JPG content while trying to stream it ? I get this error every once in a while, but it seems like it fixes itself judging by the info :


[mjpeg @ 0x562824d1fb40] overread 8
[mjpeg @ 0x562824d1fb40] EOI missing, emulating



I can provide more information if it's needed. Thanks in advance.


-
avcodec : add bitstream parser for H266/VVC
21 mars 2023, par Nuo Miavcodec : add bitstream parser for H266/VVC
Add nal parser ff_vvc_parser to parse vvc elementary bitstreams.
Co-authored-by : Thomas Siedel <thomas.ff@spin-digital.com>
Co-authored-by : James Almer <jamrial@gmail.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
2 GB Should Be Enough For Me
31 août 2010, par Multimedia Mike — GeneralMy new EeePC 1201PN netbook has 2 GB of RAM. Call me shortsighted but I feel like “that ought to be enough for me”. I’m not trying to claim that it ought to be enough for everyone. I am, however, questioning the utility of swap space for those skilled in the art of computing.
Technology marches on : This ancient 128 MB RAM module is larger than my digital camera’s battery charger… and I just realized that comparison doesn’t make any sense
Does anyone else have this issue ? It has gotten to the point where I deliberately disable swap partitions on Linux desktops I’m using (
'swapoff -a'
), and try not to allocate a swap partition during install time. I’m encountering Linux installers that seem to be making it tougher to do this, essentially pleading with you to create a swap partition– “Seriously, you might need 8 total gigabytes of virtual memory one day.” I’m of the opinion that if 2 GB of physical memory isn’t enough for my normal operation, I might need to re-examine my processes.In the course of my normal computer usage (which is definitely not normal by the standard of a normal computer user), swap space is just another way for the software to screw things up behind the scenes. In this case, the mistake is performance-related as the software makes poor decisions about what needs to be kept in RAM.
And then there are the netbook-oriented Linux distributions that insisted upon setting aside as swap 1/2 gigabyte of the already constrained 4 gigabytes of my Eee PC 701′s on-board flash memory, never offering the choice to opt out of swap space during installation. Earmarking flash memory for swap space is generally regarded as exceptionally poor form. To be fair, I don’t know that SSD has been all that prevalent in netbooks since the very earliest units in the netbook epoch.
Am I alone in this ? Does anyone else prefer to keep all of their memory physical in this day and age ?