
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (85)
-
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 ;
-
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (5274)
-
centos FFmpeg when I am using exec_static it shows only 1 minute live stream
7 janvier 2020, par DAVIT TSILOSANIHello I am using Centos 7 Ngnix RTMP module
and I am using FFmpeg alsoWhen I am streaming using console
Using that command
ffmpeg -re -i http://website......./index.m3u8 -vcodec libx264
-vprofile baseline -g 30 -acodec aac -strict -2 -f flv rtmp ://localhost/show/stream5Everything is fine,
stream is broadcasting livebut when I put it into Ngnix
such as
exec_static ffmpeg -re -i website......./index.m3u8 -vcodec libx264
-vprofile baseline -g 30 -acodec aac -strict -2 -f flv rtmp ://localhost/show/stream5It only shows 1 minute live stream after reloading, it starts over and over and over
Can u tell me what can I do to solve it ?
-
Why my youtube video made with ffmpeg only shows 360P and 1080P on mobile devices but works fine on desktop ?
1er janvier 2020, par CheeseWithMeI am trying to create a video from an image and sound file with ffmpeg.
This is what I use :
ffmpeg -y -loop 1 -r 6 -i current_image.png -i current_audio.wav -shortest -c:v libx264 -preset ultrafast -tune stillimage -pix_fmt yuv420p -c:a aac out.mp4
But uploading this on youtube will display only in 360P and 1080P on mobile devices while on Desktop I have all the resolutions up to 1080P.
It has the same effect with the command from FFmpeg wiki on enconding from youtube
ffmpeg -loop 1 -framerate 2 -i input.png -i audio.m4a -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p output.mkv
I have no idea why is this happening, I could use some guidance.
-
How to to add additional metadata to individual frames, DDB's, when creating an AVI file with ffmpeg
6 décembre 2019, par Totte KarlssonI’m creating avi videos from device dependent bitmaps, DDB’s.
The pipeline is quite simple, a GigE camera provides frame by frame, and each frame, a DDB, is piped to a ffmpeg process creating a final AVI file, using h264 compression.
These videos are scientific in nature, and we would like to store/embed experimental hardware information, such as the states of a few digital lines, with each frame.
This information need to be available in the final avi videoQuestion is, is this possible ?
Looking at this : https://docs.microsoft.com/en-us/windows/win32/api/wingdi/ns-wingdi-bitmap it does not seem that adding additional data to the DDB themselves is possible, but I’m not sure.