PDA

View Full Version : MKV video file to FLAC???


Zoooma
2015-07-11, 04:49 PM
Hey Now!

I'd like to take one long .mkv video file and somehow, with the magic of software, turn that into individual FLAC files for listening only.

My expertise in this: practically none.

I isn't no moron so I'm sure I can figure out how to accomplish this but what I need is the software. I've tried googling the subject and came up with freeware that is limited in what it can do.

Is there the perfect free download out there to be able to get this done?
Can anyone help with this?

THANKS!!!

lpmaskman
2015-07-12, 03:57 AM
If the mkv file has LPCM audio track, that'll be okay to put them to flac. If not, leave in original format.

First, you'll mkvextract to extract audio track from the video. Then you'll need a software that can split audio files.

jabulon
2015-07-12, 06:19 AM
MKVToolNix (http://www.bunkus.org/videotools/mkvtoolnix/) to extract the audio
Audacity (http://audacityteam.org/) to split

spidergawd
2015-07-12, 07:27 AM
I use ffmpeg:

ffmpeg -i input.mkv output.wav

and then audacity to edit/split, and then flac to convert:

flac *wav

or if I'm lazy I just make one flac file with ffmpeg:

ffmpeg -i input.mkv output.flac