mediaelement.js 오디오 플레이어에서 진행률 표시 줄과 '재생 시간 표시기'에 NaN
이 표시되지만 IE 11에서 보았을 때만 Firefox 26에서 모두 정상입니다. . 이것은 서버 문제가 아니라는 것을 의미하는 것으로 보입니다.Mediaelement.js - IE 11을 사용하여 NaN 가져 오기
누구나 아이디어가 있으며, 서버 문제 일 가능성이 있다면 (Apache 서버) 무엇이 필요합니까? @BiscuitBaker에서 다음 코드는이 문제를 재현합니다
: 이것은 서버가 Content-Length
에 응답하지 않는 경우 인터넷 익스플로러의 문제로 인한 것으로 보인다
$('document').ready(function() {
$('video,audio').mediaelementplayer({
audioWidth: 440,
audioHeight: 30,
// The file contains an audio watermark, so I've set the volume to 0 as I don't want this to be seen as self promotion.
startVolume: 0
});
});
.container {
margin-top: 50px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Standard mediaelement.js files, unmodified -->
<link rel='stylesheet' href='http://beta.musicvine.net/wp-content/themes/theMusicVine/library/js/mediaelement/mediaelementplayer.css' type='text/css' media='all' />
<script src="http://beta.musicvine.net/wp-includes/js/mediaelement/mediaelement-and-player.min.js"></script>
<div class="container">
<audio controls src="http://beta.musicvine.net/wp-content/uploads/edd/2015/02/joyful-moments-adi-goldstein-preview.mp3"></audio>
</div>
내 경우에는 진행률 표시 줄이 매우 작은 mp3에서도 올바르게 작동하지만 실패하고 몇 MB보다 큰 NaN을 생성합니다. – BiscuitBaker
OP 또는 @BiscuitBaker가 [MCVE] (https://stackoverflow.com/help/mcve)를 제공 할 수 있습니까? –
@ AlexanderO'Mara 나는 OP에게 약간의 시간을내어주고, 필요하다면 답장하고 게시 할 것이다. MCVE에 들어갈 수있는 것은별로 없지만 mediaelement.js 웹 사이트의 늪지 표준 구현을 사용하고 있습니다. – BiscuitBaker