
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (99)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
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 -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (3882)
-
How to eliminate ffplay delay on a local network
29 mai 2021, par VigrondI am streaming audio from one computer to another on my local LAN.


Server command :


ffmpeg -re -f alsa -ac 2 -i default -fflags nobuffer -flags low_delay -sdp_file ~/sdp_stream -f rtp rtp://192.168.1.5:1234



Client command :


ffplay -fflags nobuffer -flags low_delay -nodisp -fast -framedrop -infbuf -protocol_whitelist rtp,file,udp sdp_stream



This works with near-zero delay for a while, but after a bit the delay increases over time.


My perception of delay is due to playing a YouTube video or Spotify on the server, and experiencing a delay on the client (both monitors in front of me).


I am certain that it should be possible to set this up correctly with a near-zero delay on my local hardwired network, but I can't seem to find the correct setting in the FFmpeg documentation.


-
Revision bf1bb5d04ca3a0914adf0e5bcfa68a9dd8cf85a8 : Ajout de la langue Nasa Yuwe (pbb) Nouveau code de langue : Nasa Yuwe ...
1er décembre 2010, par davux — LogAjout de la langue Nasa Yuwe (pbb) Nouveau code de langue : Nasa Yuwe (pbb). Il s’agit de la langue officielle du territoire Nasa (non pas les fusées), en Colombie. Infos : - http://fr.wikipedia.org/wiki/P%C3%A1ez (en français) - http://es.wikipedia.org/wiki/Idioma_p%C3%A1ez (en espagnol) Cet (...)
-
FFmpeg capturing 1 FPS thumbnails
30 juin 2019, par GediminasI’m trying to programmatically export a series of thumbnail images (one image per-second) I’m not worried about the actual footage conversion and image file creation. My interest is in how would it be better to capture a valid 1 fps frame. (with no artifacts)
This is possible using FFmpeg’s command line like this :
ffmpeg -i test.mp4 -vf fps=1 out%d.png
So while looking at the FFmpeg’s source code I’ve noticed that it’s using a thing called filters. While filters can do a lot of cool stuff, I’m not sure if using those wouldn’t be too much of an overhead for a relatively simple task like this ?
I mean, while using filters, to get a correctly decoded frame (with no artifacts) FFmpeg still needs to decode all frames contiguously anyway ? So maybe in my situation it’s better to not use filters and decode frames contiguously while monitoring frame’s PTS ?