
Recherche avancée
Autres articles (111)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (14440)
-
ffmpeg : concat two clips vertically, but upper one should be bigger
19 juillet 2022, par Rittari771I have two 1920x1080 clips. I know how to concat two clips vertically (the clips share equally the space half, 50% upper clip - 50% bottom) => what would i need to do to get a ratio like 65% 35% ?
So the upper clip would take 65% of the screen space vertically, then the lower bottom clip would fill the rest 35% ?


this is my current code to concat the clips vertically.


ffmpeg -i clip_top.mp4 -i clip_bottom.mp4 -filter_complex "vstack=inputs=2" -vsync 2 final_clip.mp4



here is the same explanation, but with a picture : enter image description here


-
streaming from generated images using ffmpeg / vlc / live555
10 octobre 2019, par PavelFor the life of me I cannot get this to work correctly.
The idea is : simple python script that loads an image from a url (different every time) and passes it to ffmpeg, eg :
python fetch.py | ffmpeg -f image2pipe -framerate 1 -i pipe:.jpg -c:a copy -c:v libx264 -r 5 -b 500000 -s 600x480 ../live555/out.264
What I really need is to make this work with some sort of rtsp server.
So far a sort of working approach was to use live555MediaServer that is running on the same server and pretty much streams thatout.264
file.Why I don’t like this approach :
a. connecting to rtsp stream using vlc works but it’s very unstable (video stops) and there are not errors or anything, if I click play it resumes.
debug :
live555 debug: RTSP track Close, 0 track remaining
It seems like it just streams whatever the file has at that moment of time and does not do it continuously.b. I don’t like the "file" approach. Eg. ffmpeg is creating an
out.264
file which grows. Ideally it would simply send the stream to the RTSP server via some protocol.c. live555MediaServer just sucks
It looks like there is a way to run vlc server on my server as well, but I cannot figure out how to make ffmpeg feed the vlc server ?
Any suggestions ?
-
Output image twice in ffplay
2 mai 2024, par Sun TzunI need to show two similar images from a webcam side-by-side.
I can achieve this with this piped command, but it runs with a few seconds latency :


ffmpeg -f dshow -i video="Logi C310 HD WebCam" -filter_complex "[0:v][0:v]hstack=inputs=2[v]" -map "[v]" -f matroska - | ffplay -



I'd prefer to do the same in just ffplay.


I'd also like to have the resulting image cropped to a square size or to the size of the original image (like if the picture from webcam gets divided by half and the halfs took each other places).


What I need in this end is a tool that helps to align the camera parallelly to the captured object, so any wrong angle would be perfectly visible on video if two opposite sides of the picture are placed alongside.


PS. My platform is Windows 11.