CHUNGYUN / flylinkdc

Automatically exported from code.google.com/p/flylinkdc
0 stars 0 forks source link

Не правильно определяется битрейт аудиофайлов #280

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Во вложении скрин и mp3. Флай пишет, что 
качество 96 Кбит\с, а на самом деле 192. А у 
песни The Kill пишет 128, хотя тоже 192. Остальные 
соответствуют правде - 192. Полазил по своему 
файл листу очень многие песни не 
соответствуют правде.

Обнаружено Serx.

Original issue reported on code.google.com by Tirael...@gmail.com on 8 Jan 2011 at 4:32

Attachments:

GoogleCodeExporter commented 9 years ago
Повторилось.
сейчас гляну под отладкой...

Original comment by Pavel.Pimenov@gmail.com on 8 Jan 2011 at 6:01

GoogleCodeExporter commented 9 years ago

Original comment by a.rain...@gmail.com on 8 Jan 2011 at 7:08

GoogleCodeExporter commented 9 years ago
данный файл неверно определяет встроенная 
либа
попробовал использовать MediaInfoDLL
работает корректно и определяет 192
цена решения - к дистрибутиву прийдется 
добавить MediaInfo.dll размером 2.6 мег

    MediaInfoDLL::MediaInfo MI;
    MediaInfoDLL::String To_Display;
//  To_Display = MI.Option(_T("Info_Version"), 
_T("0.7.13;MediaInfoDLL_Example_MSVC;0.7.13")).c_str();
//   MI.Option(_T("Internet"), _T("No")); 
    if(MI.Open(Text::toT(p_name)) )
    {
     MI.Option(_T("Inform"), _T("General;%BitRate%"));
     To_Display += MI.Inform().c_str();
      MI.Close();
     }

Original comment by Pavel.Pimenov@gmail.com on 8 Jan 2011 at 9:01

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r5857.

Original comment by sa.stol...@gmail.com on 19 Jan 2011 at 11:42