
Recherche avancée
Autres articles (73)
-
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 ;
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7416)
-
Concatenating different rotated videos with ffmpeg
14 avril 2017, par acilanderI am trying to concatenate two videos with ffmpeg having different rotation metadata tags. The first one has
rotation=180
the other one has no tag at all.There are two methods that can be used in ffmpeg : concat demuxer / concat protocol. Protocol is working as expected but demuxer method is not. When I use
concat demuxer
option in ffmpeg withcopy
option to avoid re-encoding the following happens :First video with
rotation = 180
will be rotated correctly. But the second video without rotation flag will also be rotated and will be presented upside down in output video.I know about the options to remove rotation metadata or the possiblility to use filters to rotate the videos. But my question is if someone knows if this is expected behaviour of ffmpeg or not. For me it seems like ffmpeg uses rotation metadata from first video and uses it for all other concatenated videos. Is this assumption correct and intended ?
Thank you for any feedback and explanations.
-
Contrast normalization of several videos with ffmpeg
4 octobre 2016, par Alan_AII have some video sequences that I need to concatenate, some of them have bad contrast (so dark) and some are just fine. What is the best method to automatically normalize contrast levels among of these videos automatically without manual tweaking ? Preferably using the ffmpeg script
Thank you
-
Using FFMPEG to stream continuously videos files to a RTMP server
5 septembre 2023, par kketchffmpeg
handles RTMP streaming as input or output, and it's working well.


I want to stream some videos (a dynamic playlist managed by a python script) to a RTMP server, and i'm currently doing something quite simple : streaming my videos one by one with FFMPEG to the RTMP server, however this causes a connection break every time a video end, and the stream is ready to go when the next video begins.



I would like to stream those videos without any connection breaks continuously, then the stream could be correctly viewed.



I use this command to stream my videos one by one to the server



ffmpeg -re -y -i myvideo.mp4 -vcodec libx264 -b:v 600k -r 25 -s 640x360 \
-filter:v yadif -ab 64k -ac 1 -ar 44100 -f flv \
"rtmp://mystreamingserver/app/streamName"




I looked for some workarounds over the internet for many days, and i found some people talking about using a named pipe as input in
ffmpeg
, I've tried it and it didn't work well sinceffmpeg
does not only close the RTMP stream when a new video comes but also closes itself.


Is there any way to do this ? (stream a dynamic playlist of videos with
ffmpeg
to RTMP server without connection breaks