
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (28)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (5645)
-
YouTube live says not receiving data
27 décembre 2016, par Steve LobdellSo, I’m using ffmpeg. I can stream videos to YouTube live I’ve downloaded from the internet successfully using this command :
ffmpeg -re -i "C:\video.flv" -c:v libx264 -preset slow -crf 18 -c:a copy -f flv "rtmp://a.rtmp.youtube.com/live2/xyz"
When I try to stream a video that’s been recorded from a specific device, that is also flv and with same command, it’s not working. FFMpeg says it’s transmitting, no errors there. In the live dashboard on YouTube I get a green "Starting" briefly but then it goes grey to say it’s not receiving data. The only difference is the actual flv files.
Any idea why YouTube Live would say it’s not receiving any data instead of giving me an error, when it clearly is receiving it because it works with other video files ? Thanks
-
Extract frames from live youtube stream
21 décembre 2022, par irmanI want to extract frames from a youtube live event, say one frame every 5 minutes, ideally without saving the stream to my local machine. Is there a simple way to do this, possibly a combination between
youtube-dl
andffmpeg
that I am not figuring out ? I found a similar question for UDP streams but don't know how to include the youtube stream : FFMPEG : extract a fram from a live stream once every 5 seconds


Thanks a lot in advance !


-
Extract audio frames from live stream with FFMPEG
3 juillet 2021, par Devwork94035I would like to perform live voice activity detection and audio analysis on a live video stream.


I currently use FFMPEG to extract the audio :


ffmpeg -i https://example.com/live/stream.m3u8 -vn -c:a copy audio.aac



The issue is that the aac file will only be valid once the stream has finished.


How can I output an audio stream or audio chunks/frames (just like image frames) so that I can analyze them without waiting for the end of the video stream ?