On my blog I created special tumblr blog (testcase) for this bug, where i handle only two post types: video and text and have code my theme accordingly. In spite of this, Tumblr also displays audio posts, which are a separate type of posts from video posts, how to fix this?
Here is a picture of a Spotify audio embed being displayed inside a video post block:

Here is the full markup on pastebin.com
Some simple markup to test:
{block:Posts}
<li> <article class="{PostType} {TagsAsClasses}">
{block:Text}
…
<p><b>hardcoded post type: text</b></p>
<p><b>tumblr post type: {PostType}</b></p>
{/block:Text}
{block:Video}
…
<p><b>hardcoded post type: video</b></p>
<p><b>tumblr post type: {PostType}</b></p>
{/block:Video}
</article> </li>
{/block:posts}
The error is confirmed:

Update: I duplicated this post about this bug in official tumblr themes google group and wrote to tumblr support and my ticket number is 852138
Update 2: Special blog for this bug created
Update 3: Tumblr answered:
We will do our best to make sure the issue is resolved asap. Thank you very much for you consideration and understanding! (ticket 852138)
I can't tell you how much we appreciate your support and feedback. I've passed your information along to our team. (ticket 852136)
There are two tickets, because I was surprised, when my first message to support have been cutted, so i sent second message with only link to this question.
audio, not onvideo), so the issue is located somewhere between the raw template and the processed HTML. Could you post the full code of the template somewhere and link to it here? – kopischke May 14 '12 at 11:34{block:<postType>}block token each – you will be able to get rid of a lot of redundant code, and it is worth the try two see if Tumblr’s engines serves post correctly when not confronted with multiple post type blocks. I’ve done a quick Pastebin of your example code above after revision, to give you an idea of what I mean. – kopischke May 14 '12 at 12:16