Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (85)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 2011

    La 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, par

    Utilité
    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 TSILOSANI

    Hello I am using Centos 7 Ngnix RTMP module
    and I am using FFmpeg also

    When 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/stream5

    Everything is fine,
    stream is broadcasting live

    but 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/stream5

    It 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 CheeseWithMe

    I 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 Karlsson

    I’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 video

    Question 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.