Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (77)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (7742)

  • Is there built in audio preprocessing within Android OS

    28 août 2022, par Larry lu

    I am running a dev team to build an Android application which the major feature is to record user voice and merge it into a long movie. It's a dub film application.

    


    One struggle thing to my dev team is whether the Android OS pre-process the recorded auido file. because we want the very original audio data from the built in Microphone.
If there is a built-in pre-processing inside of Android OS keep updating some data of the recorded aduio file, we want to know what is changed. We can't find any official post from Android speaking about it but would like to confirm from professional.

    


    Many thanks

    


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

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