Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (67)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (8456)

  • Piwik awarded Gold Prize at Open Source Software World Challenge

    22 décembre 2014, par Matthieu Aubry — About

    We are excited to announce that Piwik has been awarded the Gold Prize in the Open Source Software World Challenge 2014 !

    Winning this award is a testament to the positive impacts of the Piwik platform worldwide. Every day dozens of new people are embracing Piwik to power their web and mobile analytics which gives them full control over their data.

    Every member of the Piwik community, from core developer to beginning user, should be proud to be part of this momentum : congratulations to us all !

    The Open Source World Challenge is the annual competition hosted by the Ministry of Science, ICT and Future Planning of Korea. This competition is mainly intended to promote open source software and expand various exchanges among open source software developers worldwide.

    Piwik Awards

  • FFmpeg : How to convert vertical video with blurred background sides

    1er février 2019, par Divya

    I execute the below command for blur the video background but i get error.

    String[] complexCommand = {"-i", "" + yourRealPath, "-lavfi", "[0:v]scale=ih*16/9:-1",
       "boxblur=luma_radius=min(640,356)/20", ":luma_power=1:chroma_radius=min(cw,ch)/20",
       ":chroma_power=1[bg]", ";[bg][0:v]", "overlay=(W-w)/2:(H-h)/2",
       "crop=h=iw*9/16", "-vb", "800K", filePath};

    ERROR :

    Unable to find a suitable output format for’boxblur=luma_radius=min(640,356)/20’
    boxblur=luma_radius=min(640,356)/20 : Invalid argument

  • Android FFMPEG for Green Background of a Video

    18 janvier 2019, par Sampath Kumar

    How to change the video background From android application using FFMPEG.

    I have tried below but no luck. I want to have plain color or image as background instead of default video background

    -i /storage/emulated/0/Android/data/files/1547626302112.mp4 -f gdigrab -framerate 25 -i title=MyWindow -filter_complex [1]split[m][a];[a]format=yuv444p,geq='if(gt(lum(X,Y),0),255,0)',hue=s=0[al];[m][al]alphamerge[ovr];[0][ovr]overlay=(main_w-overlay_w):main_h-overlay_h[v] -map [v] -c:v libx264 -r 25 /storage/emulated/0/Android/data/files/1547626302111.mp4
    -i /storage/emulated/0/Android/data/files/1547626302112.mp4 -vf colorkey=green /storage/emulated/0/Android/data/files/1547626302110.mp4