
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (38)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (4118)
-
[Help]Delay in live streaming ?
14 septembre 2017, par user8583508I do not understand how they can make this video ?
enter link description here
Real time decreases over time, not directly ? -
how to use the H264 video encoder with ffmpeg / opencv2 ?
30 août 2023, par VinceI am on ubuntu 22.04.


I installed ffmpeg with apt.


I am creating a video from some image files using python/opencv2 (installed via pip)


When I use :


cv2.VideoWriter_fourcc(*"mp4v")



the video is successfully created, but is not supported by firefox.


I read online that the H264 encoder would be a better fit for web-browsers supports.


ffmpeg -codecs | grep h264 



shows :




DEV.LS h264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders : h264 h264_v4l2m2m h264_qsv h264_cuvid ) (encoders : libx264 libx264rgb h264_nvenc h264_omx h264_qsv h264_v4l2m2m h264_vaapi nvenc nvenc_h264 )




but


cv2.VideoWriter_fourcc(*"h264")



results in :




OpenCV : FFMPEG : tag 0x34363268/'h264' is not supported with codec id 27 and format 'mp4 / MP4 (MPEG-4 Part 14)'




I could not find online what was wrong (h264 is not installed, how to install it ? the 'fourcc' of h264 is not 'h264' ? I should not create a *.mp4 file ?)


-
Encode youtube live stream to UDP out using youtube-dl and ffmpeg
1er mars 2023, par Darshan PatelI am trying to encode youtube live stream to UDP destination using youtube-dl and ffmpeg with below command


youtube-dl -f best --buffer-size 2M -o - "https://www.youtube.com/watch?v=tkUvWJiTf9A" | ffmpeg -re -f mp4 -i pipe:0 -codec copy -f mpegts udp://192.168.1.107:1234?pkt_size=1316



But its not working, its just downloading ts segments of that live stream.

When I am trying with video of youtube its working fine with below commands

youtube-dl -f best --buffer-size 2M -o - "https://www.youtube.com/watch?v=snDI6AaL04g" | ffmpeg -re -f mp4 -i pipe:0 -codec copy -f mpegts udp://192.168.1.107:1234?pkt_size=1316



Any help or suggestion appreciated.