About 50 results
Open links in new tab
  1. Convert audio files to mp3 using ffmpeg - Stack Overflow

    You could use this command: ffmpeg -i input.wav -vn -ar 44100 -ac 2 -b:a 192k output.mp3 Explanation of the used arguments in this example: -i - input file -vn - Disable video, to make sure no video …

  2. How to convert from wma to mp3 using NAudio - Stack Overflow

    Jul 5, 2015 · I'm trying to convert wma files to mp3. I need a solution that I can integrate into my code base, not rely on an external resource, so using ffmpeg isn't an option. I've been trying NAudio, but …

  3. bash - Converting *.wma to *.mp3 by SHELL-script with mplayer, lame ...

    Jan 5, 2016 · What can I do to let the script putting the new *.mp3 into the same directory as the *.wma? If I want to use 'mv' within the script I get trouble with embedded spaces in the *.wma-filenames.

  4. How do you convert an entire directory with ffmpeg? [closed]

    How do you convert an entire directory/folder with ffmpeg via command line or with a batch script?

  5. Convert any audio to mp3 format using python - Stack Overflow

    6 Not sure about django, however , in plain python world, if you want to convert any format to mp3 , pydub has quick and easy way. It can be installed using pip install pydub Supported formats are ogg, …

  6. wma audio stream to mp3 stream using NAudio c# - Stack Overflow

    My task is to convert wma audio stream to mp3 stream using NAudio and Lame. The below code is working fine with file name but I want it to be done with memory stream.

  7. Convert wma stream to mp3 stream with C# and ffmpeg

    Sep 24, 2012 · Is it possible to convert a wma stream to an mp3 stream real time? I have tried doing something like this but not having any luck: WebRequest request = WebRequest.Create(wmaUrl);

  8. pydub - convert audio file .wma to .wav file - Stack Overflow

    Sep 11, 2024 · I have the following code to convert a set of .wma files to a correspnding .wav file. import os from pydub import AudioSegment # Define the directory containing the audio files directory = …

  9. c# - How do I convert an M4A file to an MP3 or WMA file ...

    Greetings, I'm trying to find either a free .NET library or a command-line executable that lets me convert M4A files to either MP3s or WMA files. Please help :).

  10. Pydub wma to mp3 fixing "library configuration mismatch"

    Python novice, looking to change that. I am trying to convert a song from wma to mp3 while keeping the metadata on the song. Here is my code. #musicproject.py import os import glob from pydub import