Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (82)

  • 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 ) (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (10808)

  • How to make transparent background of image after rotating using ffmpeg in Android ?

    18 juin 2020, par Mit Shah

    The issue I am facing is, rotating the image in app, it works as expected. But after saving the file, the difference is seen. The image is rotated but with black background instead of transparent. I have looked several places for solution but didn't succeed.

    



    I have tried this things :

    



      

    • In command, c=none, c=black@, c=black@0, c=000000, c=0x000000
    • 


    • With both extensions jpg and png.
    • 


    



    But failed to get the required output.

    



    For practical understanding, here are the two images stating Input and Output.

    



    Help me out. Thanks

    



    Input :
    
Input :

    



    Output :
    
Output :

    


  • How to use the FFmpeg blackdetect filter for the following image

    17 septembre 2021, par dinesh47

    I am using FFmpeg to find the blackdetect from a mp4 video file. but for some reasons file with very low light or poor background at night get detected as black frame For sample i have attached the frame which detected as black

    


    My ffmpeg filter setting is "blackdetect=d=121:pix_th=0.00"

    


    my file has a resolution of 1280*720 and frame rate of 30 which uses decoder format of 4:2:0 YUV
enter image description here

    


    There are 2 Questions

    


    1.Why the ffmpeg lib detects this as black frame ?

    


    2.How to over come this ?

    


  • ffmpeg : does drawbox safely erase content of video ?

    25 janvier 2023, par Crenguta

    I want to make a box completely unrecognizable in a video without any way of reconstructing its content. Is

    


    ffmpeg -y -i input_video -vf "drawbox=x=10:y=10:w=100:h=100:color=black@1.0:t=fill" ouput_video


    


    sufficient for that ?

    


    The command creates a black box at the desired location. I am just not sure if this cannot be undone.