Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (109)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Pré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 ) (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (13209)

  • Anomalie #4449 : Taille d’image erronné des logos si un redimensionnement de l’image

    14 décembre 2020

    J’y ai passé l’après midi, mais j’ai trouvé !

    Ça se passe dans ecrire/inc/filtres.php dans taille_image.

    Raison : l’optimisation avec une static pour ne pas rechercher de nouveau la taille d’une image de même chemin.
    Or, plugins-dist/medias/action/ajouter_documents.php remplace le fichier lorsqu’il le redimensionne
    Donc, collision de nom, la static prend le pas, et renvoit la valeur initiale.

    Solution : n’utiliser la static que si le fichier n’a pas été modifié.

    Fait ici : https://git.spip.net/RealET/spip/commit/6320163e399f1ba4a6959f6d5e12de82386fe14a

  • FFMPEG Audio and Image to MP4 - Image Does Not Display [duplicate]

    31 décembre 2017, par Summer Developer

    I am using FFMPEG to create an mp4 from variable audio and image inputs.

    Each audio is paired with one image that should loop for the duration of the audio.

    My command is thus :

    ffmpeg -i "myAudioFile.mp3" -loop 1  -i /var/www/html/storage/assets/myImagefile.png -vcodec libx264 -shortest -preset fast -acodec aac -strict -2 "myVideoFile.mp4"

    It seems to work, except in the resulting .mp4 I have audio but no video (image).

    Thank you !

  • Writing an image to linux framebuffer distorts the image C++

    8 avril 2021, par max

    Im trying to set up rtsp video stream from teledyne Dalsa Genie Nano camera. For grab images I'm using a framework provided by this company.
For rtsp stream I will use ffmpeg tool that can stream video directly from linux frame buffer.
    
So i tried to write this image via memcpy function and at this moment the image is not recorded correctly. because when i try to take a screenshot from Facebook with ffmpeg in output i have corrupted image.
    
Here's some information :
image from camera
In the framework I have an image object that contains :

    


      

    1. void *address (address of one frame)
    2. 


    3. int width (1280)
    4. 


    5. int height (1024)
    6. 


    7. int depth (1)
    8. 


    


    So I wrote a function :
my function

    


    It's working fine without any errors but when I print image from frame buffer (fb) I have

    


    this

    


    I think it happens because fb device depth is 32 but frame depth is 1.

    


    Am I right ?

    


    I tried to change fb device depth with fbset tool but it returns an error -
console error output

    


    Command I use for taking an image from fb : sudo ffmpeg -f fbdev -framerate 1 -i /dev/fb0 -frames:v 1 screenAA3.jpeg

    


    Can someone tell me what I'm doing wrong ?