Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (32)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • 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 (4737)

  • Anomalie #3270 : Problème de sauvegarde en MySQL

    30 octobre 2014, par cedric -

    OK, je reproduis, on tient le bon bout ! :)

  • Revision 39826 : PG est plus strict que MySQL, il faut mettre une valeur par défaut pour ...

    13 août 2010, par rastapopoulos@… — Log

    PG est plus strict que MySQL, il faut mettre une valeur par défaut pour pas que ça ne plante.

  • Can't Read/Write to flash drive using NodeJS on Raspberry PI

    2 novembre 2022, par swerly

    I've got my flash drive mounted and modified my /etc/fstab file to automatically mount the drive, and I can run commands from the CLI and read/write to the drive just fine.

    


    As soon as I try any of the same commands using below methods within my node app (running from local storage), nothing is happening. No errors are thrown, nothing is written to/ read from the drive and the system acts like all is normal and just continues with the program :

    


    childProcess.exec('ffmpeg -f alsa -ar 48000 -ac 1 -i plughw:1,0 -acodec flac /mnt/usb/recordings/test.flac');


    


    var args = ['-f', 'alsa', '-ar', '48000', '-ac', 1, '-i', 'plughw:1,0', '-acodec', 'flac', '/mnt/usb/recordings/test.flac'];
recorder = childProcess.spawn('ffmpeg', args);


    


    Are there any other steps necessary to allow nodejs to access the flash drive ?