Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (89)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (11106)

  • youtube-dll won't download live stream

    26 juillet 2020, par NFC

    I'm trying to download a livestream in ubuntu 14 using youtube-dl but it will not download. I'm using the latest version of youtube-dl. Using Nasa channel as an example, here are the steps that I'm following

    


    1) youtube-dl —list-formats https://www.youtube.com/watch?v=21X5lGlDOfg

    


    2) youtube-dl -f https://www.youtube.com/watch?v=21X5lGlDOfg (also tried youtube-dl )

    


    The download hangs at roughly 512kb for hours. Is anyone able to successfully download the content ? Am I doing anything wrong ?

    


  • ffplay : assume 0 stream start time if start time is unset in duration check

    7 juillet 2013, par Marton Balint
    ffplay : assume 0 stream start time if start time is unset in duration check
    

    Fixes ticket #2103 and #2743.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c
  • Image mask blur processing problem using ffmpeg

    16 avril 2024, par andrew kim

    I want to apply blur using masking to two or more points in the image. I want to use a circular or other type of blur in ffmpeg rather than a box blur. I wrote the ffmpeg code, but an error continued. When there is only one blur, it works correctly, but when there are two or more blurs, an error occurs. No matter how much I search, I can't figure it out, so I'd like to ask for help.

    &#xA;

    The ffmpeg code I wrote is as follows.

    &#xA;

    ffmpeg -i input.mp4 -i mask.png -filter_complex "`&#xA;[1:v]scale=200:200,pad=1920:1080:(ow-iw)/1:(oh-ih)/1[pmask1]; `&#xA;[1:v]scale=200:200,pad=1920:1080:(ow-iw)/3:(oh-ih)/3[pmask2]; `&#xA;[0:v][pmask1]alphamerge,avgblur=10[alf];[0:v][alf]overlay[temp1]; `&#xA;[temp1][pmask2]alphamerge,avgblur=10[alf2];[temp1][alf2]overlay[v] `&#xA;"-map "[v]" -map 0:a -c:v libx264 -c:a copy -movflags &#x2B;faststart maskedblur.mp4&#xA;

    &#xA;

    The error is as follows.

    &#xA;

    [mov,mp4,m4a,3gp,3g2,mj2 @ 0000026ed1d4a500] Invalid stream specifier: temp1.&#xA;    Last message repeated 1 times&#xA;[fc#0 @ 0000026ed1cdc280] Stream specifier &#x27;temp1&#x27; in filtergraph description&#xA;[1:v]scale=200:200,pad=1920:1080:(ow-iw)/1:(oh-ih)/1[pmask1];&#xA;[1:v]scale=200:200,pad=1920:1080:(ow-iw)/3:(oh-ih)/3[pmask2];&#xA;[0:v][pmask1]alphamerge,avgblur=10[alf];[0:v][alf]overlay[temp1];&#xA;[temp1][pmask2]alphamerge,avgblur=10[alf2];[temp1][alf2]overlay[v]&#xA; matches no streams.&#xA;Error initializing complex filters: Invalid argument&#xA;

    &#xA;