
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 (63)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...)
Sur d’autres sites (4402)
-
I can't stream the 4K videos with HLS [closed]
26 juillet 2023, par sinnesloschenI'm experiencing difficulties in streaming 4K videos with HLS. I'm using Cloudflare R2 for video storage and streaming, and so far, there haven't been any issues. I've attempted streaming on various computers and phones, and it works fine on most devices. However, there is a problem with some phones that prevents 4K videos from opening. I tried many times, changed the line of code many times. I tried from many computers and phones but the result is the same.


Could you please provide some suggestions on how to fix this problem ?


FFMPEG code :
ffmpeg.exe -i "C:\Users\Administrator\Downloads\akame-ga-kill-1-1-2160-jp.mp4" -y -vf scale=3840:2160 -c:v libx264 -c:a aac -preset medium -crf 18 -f hls -hls_time 10 -start_number 1 -hls_list_size 0 -hls_playlist_type vod -hls_flags independent_segments -hls_segment_type mpegts -hls_base_url "https://pub-a12f06d0f6d04269a5f5c378d1a005ab.r2.dev/TS9" -hls_segment_filename "akame-ga-kill-1-1-2160-%d.ts" "akame-ga-kill-1-1-2160.m3u8"


M3U8 stream link : https://pub-a12f06d0f6d04269a5f5c378d1a005ab.r2.dev/TS8/mainplaylist.m3u8


-
How to render a group of videos into a larger video with FFmpeg
17 octobre 2020, par thewaymanHow do I render a group of videos in a grid where video size and placement is variable.
I know how to merge two videos with FFmpeg, but how to do it for a grid.


ffmpeg.exe -i "2.avi" -vf "[in] scale=640:480 , pad=width=640+640:height=480:x=0:y=0:color=red [left];movie=1.avi, scale=0:480 , pad=width=640:height=480:x=(640-480)/2:y=0:color=red [right]; [left][right] overlay=640:0 [out]" -b:v 768k "Output1.mp4"





-
Alternate 2 videos with ffmpeg
2 juin 2012, par enzo.rivelloHere is the problem :
i got 2 videos, and 3 intervals ;
i need to create one video by mixing this 2 videos switching video A to B at interval 1, B to A at interval 2 and again A to B at interval 3.Switching needs to be done along the audio files .
Right now the only solution i came up was to cut the 2 videos and then chain them in the right order, but i was asking if there's a more elegant way to do this !
Thank you everyone in advance !