
Recherche avancée
Autres articles (73)
-
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" (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (6919)
-
rtp streaming using av_interleaved_write_frame or av_write_frame
4 avril 2013, par sinanI am using ffmpeg windows libraries to rtsp/rtp demux and muxing. But I have problem about processing time of av_interleaved_write_frame or av_write_frame, for example for h264 encoded 1920x1080 pictures it takes 10-20 ms for p frames and 70-100 ms for I frame. I am using VLC for receiver and network bandwith is 100Mb, operating system is 32 bit windows7. If I choose smaller size picture processing time is decreases but it still over for my expectation.
Is it normal these processing times.
thanks,
-
Is it possible to be more accurate than a second for the snipping function below ? (MATLAB, ffmpeg)
19 juillet 2021, par Micah Tsnip = 'ffmpeg -i %s -ss %d:%d:%d -t %d:%d:%d -async 1 -strict -2 %s';
snipstr = sprintf(snip,UncutFile,StartHRS,StartMIN,StartSEC,DurHRS,DurMIN,DurSEC,CutFile);
runsnip = system(snipstr);



These lines snip a video based on starting time inputs and duration inputs. I need my videos to be snipped to times more accurate than a second.


Thank you.


-
Synchronization of two RTMP streams with ffmpeg
6 juillet 2022, par Strub3lI have the problem right now that I need to merge two or more streams into one, the problem is that they are out of sync.


Is there any way to calculate or compare Stream 1 with Stream 2 and get the desync times and
desync
them automatically with ffmpeg ?

I know there is an option
-itsoffset
, but for that I have to set the delay manually for each stream, which would be a lot of hassle.