Acha Bill
Acha Bill

Reputation: 1255

QMediaPlayer does not play some mp3 files

QMediaPlayer does not play a few mp3 files.

e.g "..\Black Star Elephant\02 Am I Wrong.mp3" does not play but
..Birdy_-_Fire_Within\03 - Light Me Up.mp3" plays.

For the file that does not play, I get the following;

TagLib: MPEG::Header::parse() -- Invalid sample rate. , DirectShowPlayerService::doRender: Unresolved error code 80040266 and finally crashes with error exited with code -1073741819

I cant figure out any particular differences between the 2 files and why Directoshow fails for others.

Upvotes: 3

Views: 1251

Answers (1)

Roman Ryltsov
Roman Ryltsov

Reputation: 69706

0x80040266 is VFW_E_NO_TRANSPORT "Pins cannot connect due to not supporting the same transport." The problem with "non-playable" files is that they have an ID3 tag section, which is overly long for stock decoder to skip it an reach the data.

See also:

Upvotes: 3

Related Questions