Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (77)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

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

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (4400)

  • Convert video with FFmpeg using GPU

    17 juillet 2024, par sdnaghdi

    I have a video sharing site and convert videos with FFmpeg but it takes a lot of time for converting.

    


    How can do it fast and safe ?

    


    I think when FFmpeg uses the GPU it helps me but I find no good reference on how to use the that.

    


    Which application or reference can help me that allow for good performance ?

    


  • ffmpeg code (API)

    22 juin 2014, par user3209762

    I started to deal with ffmpeg API ( not the command prompt ) to build a movie editor, and I’m trying to find a good tutorial about how to extract keyframes from video, but I didn’t find it.

    1. Someone did it before and can write the code here ?
    2. Someone has a good tutorial about ffmpeg API ?

    Thank you !

  • Blur HD-video to make less artefacts when scaled down

    25 juin 2020, par Werner

    I'm enconding a video in HD-size adding a watermark, the source being 4K. The source-video seems to be very "sharp" and "clear".

    


    My problem is that when the HD-video is displayed in a small window in the browser or in VLC, I get a lot of artefacts, even sometimes noisy. My idea was to blur the video just a bit to keep the good quality but to reduce the artefacts.

    


    I'm encoding the video with ffmpeg on windows like :

    


    ffmpeg -i "source.mov" -i "watermark.png" -filter_complex "overlay=24:960,boxblur=1:1:cr=0:ar=0" -y "dest.mp4"


    


    The boxblur results already in a good video, but I was wondering if I can get a better solution by using other parameters on boxblur or using another blur-filter at all. But before trying things I must admit I don't fully understand perhaps somebody got some hints what would be a good place to start ?