
Recherche avancée
Autres articles (89)
-
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (11207)
-
C# - Streaming video from IP Camera with overlay to Facebook Live
6 avril 2018, par Justin LiI am currently working on a project where I am trying to have a C# application connect to multiple IP Cameras where I will add an overlay and continue to forward that stream to an RTMP server like Facebook Live. I am currently using the Ozeki Camera SDK to work with my IP Cameras but I have looked into using AForge as well.
I have everything set up to stream and overlay but I am having some trouble understanding how I can convert video and audio to be stream-able to the Facebook RTMP server. It seems I have to have an encoder for the video but after Googling, I am coming up short with methods of how to achieve this. I am hoping that someone has some experience in this field can give me a hand.
Thanks in advance.
-
FFmpeg send duplicate frames until input have have new frames
16 mai 2020, par Zahid NisarI am feeding MKV file into ffmpeg using stdin the mkv has h264 and opus codecs in it I want to send this to rtmp the mkv is genrated at run time 
the problem is that some time mkv pause for a time at this time I want to send last frame to rtmp server I am doing this as following but no result



streamer = spawn(ffmpegPath, ['-y', '-i', '-', '-i', '-', '-f', 'lavfi', '-i', 'nullsrc=s=1280x720:d=35:r=25', '-vcodec', 'libx264', '-preset', 'medium', '-g', '20', '-r', '30', '-b:v', '2500k', '-acodec', 'aac', '-b:a', '128K', '-ac', '1', '-bufsize', '512k',
 '-filter_complex', '[1:v][0:v]overlay[video]', '-map', '[video]', '-map', '0:a', '-f', 'flv', "rtmp://x.x.x.x/cc/"]);



-
FFMPEG Encryption
23 septembre 2015, par rickyma924I am doing a project with encrypting
video and I have a few questions for the procedure.I used a command to transcode
mp4
toHLS
with ats
segment duration of 10 seconds.First, I need to encrypt those videos with a key from database. However,
I have no idea for the encryption whether working with ffmpeg or not.Second, if the encryption can work without ffmpeg, so what should I do ? I have searched in google which includes something like openssl / aes but
there is no a detailed step for me to follow, even the ffmpeg link :
http://www.ffmpeg.org/ffmpeg-all.html#srtpCould anyone give me a hand, teaching me how to encrypt a video ? Thanks to you.