
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (53)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (3207)
-
av_interleaved_write_frame() : Connection reset by peer youtube.
16 février 2019, par Hasani want to live stream to youtube with ffmpeg but i take error " av_interleaved_write_frame() : Connection reset by peer". i send stream with FMLE its works nice.
ffmpeg -re -i /mnt/windows/21.mpg -r 30 -s 854x480 -c:v libx264 -c:a libfdk_aac -f mpegts "rtmp://a.rtmp.youtube.com/live2/hasanbagcaci.3s3v-pkwx-g64b-5zgz" -force_key_frames "expr:gte(t,n_forced*1)"
thanks for helping
-
How to update tags on youtube stream through API which is streamed though FFMPEG
6 décembre 2018, par Anirudha GuptaI am using FFMPEG to stream the video on youtube, I have certain text and tag that must be set as description of stream video. How this can be done in youtube data v3.
Will getting list of video and update the latest one’s tag and text is a good idea. Is there a way I can send tag through FFMPEG command.
-
FFmpeg - How should I do to convince YouTube that it is receiving "endless" video stream ?
16 octobre 2017, par K._I’m using FFmpeg and Youtube Live Streaming API to live-stream videos to YouTube.
I made something generates video files continuously,
and I want to live-stream them to YouTube without any delay.To feed them to YouTube’s RTMPT(rtmp ://a.../live2/...) server,
I tried several things :- Just
while:; do ./ffmpeg ... rtmp://...; done
. - Piping
YouTube streamed them continuously, but not seamlessly.
It showed Buffering icon for about 20 seconds (as if a new YouTube stream gets created and starts to be fed), about 5 seconds before the currently showing video ends and the next video get showed.| ...===============(BUFFERING)===== | ...===============(BUFFERING)===== | ...
It seems that YouTube just stops the stream when it detects the end of a video.
How should I do to convince YouTube that it is receiving "endless" video stream ? - Just