DEV Community

Discussion on: Convert Your media files

Collapse
 
kromiro1 profile image
Kromiro

Is there an easy or ideally free way to convert .wmv video files to .mp4 files so they can be viewed on a mac? I used Aiseesoft but the free trial only lets you convert up to 5 minutes of video.

Collapse
 
c3phas profile image
c3phas

Hey Kromiro , If you have ffmpeg installed just run the following:

ffmpeg -i video.wmv -q:a 1 -q:v 1 -f mp4 output.mp4

Collapse
 
kromiro1 profile image
Kromiro

Thank!

Collapse
 
c3phas profile image
c3phas

Install ffmpeg on mac by typing

brew install ffmpeg