Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (57)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9227)

  • Evolution #4567 : balise introduction

    4 octobre 2020, par josiane aletto

    j’a le pb avec d’autres plugin .

    Le filtre couper ne prend pas les "raccourcis" des plugins qui sont dans pre_propre ou post_propre du plugin mais prend de ces même plugins les raccourcis de pre_typo ou post_typo.

     

    La balise #INTRODUCTION enleve proprement tous les raccourcis qui sont dans ces plugins.

     

    d’ou ma demande d’avoir soit couper qui fonctionne comme INTRODUCTION au niveau des coupures soit une balise INTRODUCTION_TEXTE qui s’applique directement sur le texte ( sans prendre chapo ou descriptif)

     

    pour info : les [| |] sont dans le plugin Enluminures typographiques V3

     

    y a t-il quelque chose a faire de special au niveau d’un plugin pour que les raccourcis dans pre_propre / post_propre soient pris en compte pas couper

    merci

     

     

     

     

     

     

     

    Message du 04/10/20 19:29
    De :
    A :
    Copie à :
    Objet : [SPIP - Evolution #4567] balise introduction

    La demande #4567a été mise à jour par b b.

    les raccourcis portant sur des paragraphes comme centrer un paragraphe

    Il n’y a aucun raccourci de ce type dans SPIP, cela vient donc d’un plugin, ce qui me laisse penser que le bug est peut-être tout simplement dans le plugin en question...

    Evolution #4567 : balise introduction

    Auteur : josiane aletto
    Statut : Nouveau
    Priorité : Normal
    Assigné à :
    Catégorie :
    Version cible : 3.4
    Resolution :

    avoir l’equivalent de la balise introduction par exemple balise introduction_texte qui va chercher l’introduction uniquement dans le texte avec éventuellement le texte entre intro car ce filtre coupe correctement le texte sans laisser des raccourcis et autre element genant
    ou pouvoir couper le texte sans que les raccourcis sur des paragraphes restent dans le texte couper

    Vous recevez ce mail car vous êtes impliqués sur ce projet.
    Pour changer les préférences d’envoi de mail, allez sur http://core.spip.net/my/account

  • Understanding Kotlin Constructor as Java Developer

    12 octobre 2020, par Birch

    I am attempting to use a java libary with few resources. I have been following some Kotlin code and trying to implement what I can in the Java language. However, I am not 100% sure on constructing an instance of a class in Kotlin after googling.

    


    FRAME_GRABBER = FFmpegFrameGrabber("title=SomeWindow").apply {format = "gdigrab" frameRate = 30.0 imageWidth = CAPTURE_WIDTH imageHeight = CAPTURE_HEIGHT start()}

    


    I have achieved the equivalent in Java :

    


    frameGrabber = new FFmpegFrameGrabber( ? ? ? );
    frameGrabber.setFormat("gdigrab");
    frameGrabber.setFrameRate(30.0);
    frameGrabber.setImageWidth(captureWidth);
    frameGrabber.setImageHeight(captureHeight);
    frameGrabber.start();


    


    However the three constructors with their respect parameters for FFmpegFrameGrabber are File, InputStream and a String for file name.

    


    I would like to know what exactly "title=SomeWindow" is doing in the Kotlin code. Thanks.

    


  • Generate fixed time, fixed frame count, webp animated preview with ffmpeg

    28 octobre 2020, par Paulo Neves

    I have a seemingly very simple use case that i cannot find a way to reproduce from instructions scattered on the internet, nor from the ffmpeg manual.

    


    Basically I want an arbitrary webm video to be converted into 4 frames [0, 1/4 1/2 3/4 1]ths of the video.

    


    ffmpeg -i video.webm -vf fps=1/$(echo 'scale=6;' $(ffprobe -loglevel quiet -of 'compact=nokey=1:print_section=0' -show_format_entry duration /video.webm) ' / 4' | bc)  thumbnail-%d.png


    


    Then i want these frames to generate a webp file that cycles inifinitely through each frame at 1 frame per second.

    


    img2webp -loop 0 -d 1000 -o d.webp thumbnail-*


    


    What is the single execution ffmpeg command equivalent ?