I try to use tag audio. Convert mp3 to ogg use

ffmpeg -i "123.mp3" "1234.ogg"  

Server response content-type for .ogg like video/ogg. I try content-type audio/ogg and application/ogg but it doesn't work too. I think my file have got wrong format, because in player it works. How to correct convert file from mp3 to ogg in linux console?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Could you try using the file command on the file to see what it says about the content?

Just out of curiosity.

I prefer to use the oggenc command myself . . I don't think there is 1 correct way to do it . . Like most things there are many ways to get there.

link|improve this answer
/music# file 123.ogg 123.ogg: Ogg data – Evgeniy Feb 22 '11 at 8:26
1  
where it download? xiph.org/downloads is it correct link? – Evgeniy Feb 22 '11 at 8:42
Yep, oggenc is the official encoder. Most linuxes have it in their package system (eg on ubuntu you can apt-get install oggenc etc . .) It should be in the vorbis tools package on the xiph.org site. – the JinX Feb 22 '11 at 9:28
thx a lot. I try it to test. – Evgeniy Feb 22 '11 at 10:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.