Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (67)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (15253)

  • Mix 2 audio files with android ffmpeg android

    15 novembre 2019, par user3673182

    I am developing an android application for mixing 2 audio files.And i use android ffmpeg for that.I use following lib. from GitHub
    https://github.com/guardianproject/android-ffmpeg-java

    I use following code to mix 2 audio files from activity .

    try {
                File fileAppRoot = new File(getApplicationInfo().dataDir);
                SoxController sxCon = new SoxController(fileAppRoot, new ShellUtils.ShellCallback() {
                       @Override
                       public void shellOut(String shellLine) {

                           System.out.println(shellLine);
                       }

                       @Override
                       public void processComplete(int exitValue) {

                       System.out.println("hello");
                       }
                   });
                List<string> files=new ArrayList<string>();
                files.add(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Testing/me.mp3");
                files.add(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Testing/il.mp3");
                sxCon.combineMix(files,Environment.getExternalStorageDirectory().getAbsolutePath()+"/Testing/ial.mp3");
    </string></string>

    but this return exit value 2 on processComplete and no new file generated for mix audio.
    This will return following problem in logs no handler for file extension `mp3’

    Thanks for any help on this..

  • Mix 2 audio files with android ffmpeg android

    10 novembre 2014, par user3673182

    I am developing an android application for mixing 2 audio files.And i use android ffmpeg for that.I use following lib. from GitHub
    https://github.com/guardianproject/android-ffmpeg-java

    I use following code to mix 2 audio files from activity .

    try {
                File fileAppRoot = new File(getApplicationInfo().dataDir);
                SoxController sxCon = new SoxController(fileAppRoot, new ShellUtils.ShellCallback() {
                       @Override
                       public void shellOut(String shellLine) {

                           System.out.println(shellLine);
                       }

                       @Override
                       public void processComplete(int exitValue) {

                       System.out.println("hello");
                       }
                   });
                List<string> files=new ArrayList<string>();
                files.add(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Testing/me.mp3");
                files.add(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Testing/il.mp3");
                sxCon.combineMix(files,Environment.getExternalStorageDirectory().getAbsolutePath()+"/Testing/ial.mp3");
    </string></string>

    but this return exit value 2 on processComplete and no new file generated for mix audio.
    This will return following problem in logs no handler for file extension `mp3’

    Thanks for any help on this..

  • Using FFMPEG To Fill in Gaps of a Raw Audio UDP Stream

    14 février 2020, par Wallace

    I have a software defined radio (SDR) that picks up audio from emergency services and with the help of software, streams raw audio using UDP. The audio is PCM signed 16-bit little-endian. The UDP stream is also not constant and only has data when audio is detected.

    The problem I’m trying to solve is that I would like the gaps in recorded audio to be filled with silent or Null audio. Below are just a couple of my attempts at resolving this :

    1. ffmpeg -f s16le -ar 8000 -i udp ://127.0.0.1:23456 -af aresample=async=1 -acodec libmp3lame -
      f rtp rtp ://127.0.0.1:1234
    2. ffmpeg -re -f lavfi -i anullsrc -f s16le -ar 8000 -i udp ://127.0.0.1:23456 -filter_complex
      amix=inputs=2:duration=first -acodec libmp3lame -f rtp rtp ://127.0.0.1:1234

    I guess my questions are regarding the best way to resolve this and whether or not ffmpeg can be used in a way to accomplish this ?