Gå til innhold

Hvordan konvertere Flac til Mp3


saluttknall

Anbefalte innlegg

Hei! Er ikke helt sikker på hvor denne skal, så jeg prøver her. Bare å flytte den om den er feilpostet.

Jeg har fått fatt i noen filer av fyltypen .flac og skulle gjerne ha konvertert disse til mp3. Jeg fant en guide på nettet, men fremgangsmåten fungerte ikke.

 

Noen her som vet om en enkel fremgangsmåte for å konvertere flac til mp3?

Lenke til kommentar
Videoannonse
Annonse

Har nå konvertert filene ved hjelp av Switch. Takkfor hjelpen! Men, hvordan velger man hvilkenlydkvalitet man ønsker p det ferdige produktet i Switch? Alle filene blir nå på 128kbps og jeg skulle helst sett at det ble 320kbps. Noen som kan hjelpe med dette?

Lenke til kommentar

har du bash og lame kan du bare lage deg et script. f.eks:

 

#!/bin/bash
lame_opts=" --vbr-new -V 2 -b 320 "

for x in "${@}"
do
FLAC=${x}
MP3=`basename "${FLAC%.flac}.mp3"`
[ -r "$FLAC" ] || { echo can not read file \"$FLAC\" >&1; exit 1; };

TITLE="`metaflac --show-tag=TITLE "$FLAC" | awk -F = '{ printf($2) }'`"
ALBUM="`metaflac --show-tag=ALBUM "$FLAC" | awk -F = '{ printf($2) }'`"
ARTIST="`metaflac --show-tag=ARTIST "$FLAC" | awk -F = '{ printf($2) }'`"
TRACKNUMBER="`metaflac --show-tag=TRACKNUMBER "$FLAC" | awk -F = '{ printf($2) }'`"
GENRE="`metaflac --show-tag=GENRE "$FLAC" | awk -F = '{ printf($2) }'`"
COMMENT="`metaflac --show-tag=COMMENT "$FLAC" | awk -F = '{ printf($2) }'`"
DATE="`metaflac --show-tag=DATE "$FLAC" | awk -F = '{ printf($2) }'`"

flac -dc "$FLAC" | lame${lame_opts} \
--tt "$TITLE" \
--tn "$TRACKNUMBER" \
--tg "$GENRE" \
--ty "$DATE" \
--ta "$ARTIST" \
--tl "$ALBUM" \
--add-id3v2 \
- "$MP3"

done

 

i scriptet har jeg satt 320kbps vbr. du kan endre til hva du vil

Endret av indietrash
Lenke til kommentar

(Disclaimer: You can do this using Foobar2000 or dbPoweramp easily enough. For those of you who don't use those apps or can't be bothered, read on...)

 

NOTE: This method does not work for file names with Unicode characters in them (use Foobar if you want to convert those types of files)

 

OK. Here's a little tutorial for those of you who would like to convert Flac to mp3 using a simple little freeware app.

 

First, if you don't have them yet, download & install the Flac (FLAC for Windows with installer) and Lame mp3 codecs. Next, download & install this small & simple app called All2Lame.

*You may also need Tag (by Case), which is used for adding ID3 tags to files. It can be found on the All2Lame homepage.

 

Now that you've done all that, open up the program. You'll need to point it to the codecs that you just downloaded. Do this by clicking on "Locations" and then browsing to each one.

 

all2lame1.jpg

 

Next, you'll want to add a command line (or a bunch or 'em) to the "Switches" box at the bottom. Click the " " button beside it to add new ones. Later on you can just click the arrow button there to bring up whatever command line you choose, for different bitrate encodings. Here's the ones I use:

 

-b 320 --add-id3v2 --ignore-tag-errors

-V 0 --vbr-new --add-id3v2 --ignore-tag-errors

-V 2 --vbr-new --add-id3v2 --ignore-tag-errors

 

You will want the "Add ID3 tags" box checked, and you can configure that option how you want. (I just use "Copy tags from source files")

 

Now you just add the files you want converted, choose a command line, set the "Output folder" location, and then click "Encode". A DOS window will appear, showing the process in action. It doesn't take too long.

 

all2lame2.jpg

 

That's it! After that initial setup, it's a very quick & simple job whenever you want to encode Flac to mp3. Also, if you like, you can click "Decode" to decode to .wav files.

 

Cheers!

Lenke til kommentar

Opprett en konto eller logg inn for å kommentere

Du må være et medlem for å kunne skrive en kommentar

Opprett konto

Det er enkelt å melde seg inn for å starte en ny konto!

Start en konto

Logg inn

Har du allerede en konto? Logg inn her.

Logg inn nå
×
×
  • Opprett ny...