20-04-2024 05:38 PM
20-04-2024 05:47 PM - last edited 20-04-2024 05:49 PM
21-04-2024 08:43 AM - last edited 21-04-2024 12:33 PM
Hi @Ned57
How to convert between different media types. There numerous options for this. It depends how familiar you are with computers and which OS you are using.
A great tool is FFmeg. It works on Linux, MacOS and Windows. Using it on the command line is very simple.
ffmpeg -i my_input_media.EXT my_output_media.ext
Where EXT is the the extension of the input file to convert from and ext is the extension of the output file to convert to.
e.g.
ffmpeg -i my_file.wma my_file.mp3
Alternatively, you could use VLC media player. It will play .wma files without the need to convert them.
I hope this helps you.