
Recherche avancée
Autres articles (87)
-
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 ;
-
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 ) (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (6954)
-
I need to combine audio and video stream with fluent ffmpeg
14 janvier 2021, par mr noobI need to take an input stream's audio and another stream's video and combine them with fluent-ffmpeg. I am using nodejs. Also, I need to pipe the output. Both of the inputs have video and audio, but I need to merge a stream's audio only, while doing the same with video on the other stream.


Thank you.


-
Auto aspect on stream with ffmpeg
6 mars 2018, par Felix BäderI currently try to get an image each second from a udp stream with the following configuration :
ffmpeg -i udp://localhost:1234 -vf "scale=iw*sar:ih , pad=max(iw\,ih*(16/9)):ow/(16/9):(ow-iw)/2:(oh-ih)/2" -aspect 16:9 -update 1 img.jpg
Metadata:
encoder : Lavf57.83.100
Stream #0:0: Video: mjpeg, yuvj420p(pc), 1024x576 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
Metadata:
encoder : Lavc57.107.100 mjpeg
Side data:
cpb: bitrate max/min/avg: 0/0/200000 buffer size: 0 vbv_delay: -1If the first frame of stream is 4:3 black borders are added to the output image. If the aspect is changed in stream from 4:3 to 16:9 the output image still contains the black broder and the aspect of the image between the borders is 4:3.
If I restart ffmpeg while the aspect is 16:9 the borders are removed from the output and the output image looks fine.
In the console I get the following log on the aspect change of stream :
[swscaler @ 0x7fc6b1035600] deprecated pixel format used, make sure you did set range correctly
Is there any option to fix this issue.
-
How to use ffmpeg to decode speex stream ?
31 octobre 2013, par paradisal programmerI want to decode speex stream and extract audio from it.
I've heard FFmpeg support speex codec, but i don't know how to use it.
Is there any code sample about decoding speex stream data ?
Thanks in advance.