Recherche avancée

Médias (91)

Autres articles (78)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (10723)

  • Winamp Media Player Released with WebM Support

    21 juillet 2010, par noreply@blogger.com (John Luther)

    Winamp Media Player now supports native WebM playback. Read all about it on their blog.

  • How to capture device input with ffmpeg in C ?

    24 mai 2019, par Yi Lin Liu

    I am trying to use ffmpeg in my C code to capture device input, like screen and audio record. I have looked through their official documentation and wiki, but the API documentation is not really well explained compare to the command line usage.

    According to the documentation, if I want to record audio with alsa on linux I could, for example

    ffmpeg -f alsa -i hw:&lt;#card>,&lt;#device> -t <seconds> out.wav
    </seconds>

    I want to use the C API to do the same thing, any idea ?

  • R create a video with imager and ffmpeg

    28 mars 2020, par Scrabyard

    I need to put 250 *.png-Files together in one video (mpeg). I installed ffmpeg and in my Enviroment-Variables (Windows 10) I added the path to the bin directory in Path-Variable.

    My *.png-files lay in folder "output" in directory of my R-file. I want ALL *.png-files in the movie.

    So I tried this R-Code, but it just won’t work, nothing happens when executing :

    library(imager)

    make.video(
     dname = "output",
     fname = "animation.mpeg",
     pattern = "%d.png",
     fps = 25,
     extra.args = "",
     verbose = FALSE
    )

    What is wrong with it, I used exactly the example from the official help...