Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (74)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (14347)

  • Heroku Discord.js ffmpeg

    2 janvier 2021, par Snoweuph

    I wrote a discord music bot, and i used ffmpeg so that i put the executable in the botfolder, now i wanna push the bot into heroku, installed the npm package, but get this error in heroku :

    


    2021-01-01T02:48:33.038447&#x2B;00:00 app[Worker.1]: Error: FFmpeg/avconv not found!&#xA;2021-01-01T02:48:33.038488&#x2B;00:00 app[Worker.1]:     at Function.getInfo (/app/node_modules/prism-media/src/core/FFmpeg.js:142:11)&#xA;2021-01-01T02:48:33.038489&#x2B;00:00 app[Worker.1]:     at Function.create (/app/node_modules/prism-media/src/core/FFmpeg.js:155:38)&#xA;2021-01-01T02:48:33.038490&#x2B;00:00 app[Worker.1]:     at new FFmpeg (/app/node_modules/prism-media/src/core/FFmpeg.js:44:27)&#xA;2021-01-01T02:48:33.038491&#x2B;00:00 app[Worker.1]:     at AudioPlayer.playUnknown (/app/node_modules/discord.js/src/client/voice/player/BasePlayer.js:47:20)&#xA;2021-01-01T02:48:33.038491&#x2B;00:00 app[Worker.1]:     at VoiceConnection.play (/app/node_modules/discord.js/src/client/voice/util/PlayInterface.js:71:28)&#xA;2021-01-01T02:48:33.038492&#x2B;00:00 app[Worker.1]:     at play (/app/index.js:335:47)&#xA;2021-01-01T02:48:33.038493&#x2B;00:00 app[Worker.1]:     at Client.<anonymous> (/app/index.js:143:17)&#xA;2021-01-01T02:48:33.038493&#x2B;00:00 app[Worker.1]:     at processTicksAndRejections (internal/process/task_queues.js:97:5)&#xA;</anonymous>

    &#xA;

  • How can I send a virtual camera to Genymotion or Android Studio Emulator in Ubuntu ?

    4 décembre 2020, par ykasur

    I created a virtual camera using v4l2loopback and ffmpeg. The command I use for ffmpeg is :&#xA;ffmpeg -re -l oop 1 -i vin.png -vf format=yuv420p -f v4l2 /dev/video2

    &#xA;

    vin.png is the image I want to stream to the webcam and /dev/video2 is the virtual webcam I created with v4l2loopback.&#xA;The virtual webcam works and I can see it e.g. with onlinemicetest.com/webcam-test.&#xA;I'm using the Genymotion emulator with the newest Android API (I tried 7.0, 8.1 and 10.0) on Ubuntu 20.40.&#xA;Genymotion detects the virtual camera but only displays a dummy image :&#xA;Wrong dummy Image from Genymotion&#xA;I also tried (and would prefer to use) the android studio emulator. But I can only select Webcam0 in the configuration of the device camera and that points to the real integrated camera and not to my virtual webcam.

    &#xA;

    I don't need to use ffmpeg, but I do need to use a tool that lets me control which image to stream from the command line.

    &#xA;

    Is there a way to solve this ? Many thanks in advance !

    &#xA;

    Update 17.11.2020 :&#xA;The Genymotion support answered me, that they plan to support virtual cameras in the future. They might be ready to add this in mid 2021.

    &#xA;

  • Hardware accelerated mjpeg encoding with ffmpeg

    10 avril 2021, par quarks

    I have this batch file that I need to convert videos into MJPEG but using Hardware acceleration on a machine with AMD GPU (Vega 8 and RX560X specifically)

    &#xA;

    echo off&#xA;set arg1=%1&#xA;shift&#xA;ffmpeg -i %arg1% -vcodec mjpeg_vaapi -vf scale=min&#x27;(960,iw)&#x27;:-1 -acodec pcm_s16le -ar 22050 -ac 2 -r 20 -q:v 5s -f avi %arg1%.mojo&#xA;

    &#xA;

    And I'm using ffmpeg version 4.4-full_build-www.gyan.dev Copyright (c) 2000-2021 the FFmpeg developers

    &#xA;

    Running the batch throws Unknown encoder &#x27;mjpeg_vaapi&#x27;

    &#xA;

    Which ffmpeg version contains the MJPEG encoder that can encode with hardware acceleration ?

    &#xA;