
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (103)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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) (...)
Sur d’autres sites (11618)
-
Icecast to Youtube Live
21 novembre 2018, par eusidSo I know how to send my stream to youtube live with ffmpeg and use an image as the video. I wanted to have the track meta data on this image though.
I figure one could write a script to execute everytime icecast changes tracks to overwrite the image with the meta data. Not sure if this would update the streams image or not. I was hoping someone already had done this.
Does anyone have some code to add to my FFMPEG setup to put the meta data up ?
-
ffmpeg downloading parts of Youtube videos but for some of them they have a black screen for a few seconds
29 septembre 2021, par user14702793So im using ffmpeg to download some youtube videos with specific start and stop times. My code looks like
os.system("ffmpeg -i $(youtube-dl --no-check-certificate -f 18 --get-url %s) -ss %s -to %s -c:v copy -c:a copy %s"% (l, y, z, w))
where the variables would all be the name of the file, the url, and the start and stop times. Some of the vidoes come out just fine, others have a black screen and only a portion of the video, and a very few amount have just audio files. My time is formated as x.y where x would be the seconds and y would be the milliseconds. Is this the issue so I need to transform it to 00:00:00.0 format ? Any help is appreciated

-
403 Forbidden ffmpeg / youtube-dl
28 février 2023, par TSRI am trying to download a blob video that is playing in my browser :


ffmpeg -i 'https://example.com/playlist.m3u8?cred=abcd' -bsf:a aac_adtstoasc \ 
 -vcodec copy -c copy -crf 50 file.mp4



I get the error




https @ 0x11fe2ade0] HTTP error 403 Forbidden [hls @ 0x11fe05610]
Failed to open an initialization section in playlist 0
Error when loading first segment
'https://example.com/s2q1.m4s' ;




Indeed, when I open
https://example.com/s2q1.m4s
I get 403 forbidden in browser. However, if I addhttps://example.com/s2q1.m4s?cred=abcd
, I get no error.

I get the same behaviour with
youtube-dl


So how to make
ffmpeg
oryoutube-dl
append whatever query parameter in the input url in all subsequent requests ?