为什么chrome不会播放.mp4或.webm?

时间:2015-10-15 13:50:14

标签: google-chrome html5-video

Chrome表示“不支持此插件”,即使我同时拥有这两种视频格式。奇怪的是,我可以在其他网站(使用相同的计算机/浏览器)上播放HTML5视频。我查看了源代码,然后他们首先使用mp4然后是webm。

我用另一台计算机上的chrome测试了网站,它运行正常。 Chrome是两台计算机上的最新版本。

这是我的代码:

def conn_handler(self, connection, address):
    self.logger.info("[%d] - Connection from %s:%d", 10, address[0], address[1])

    sending_measurements_enabled = False
    try:
        while True:

            command = None
            readable, writable, exceptional = select([connection], [], [], 0)

            if readable:
               data = connection.recv(2048)

               if data:
                   command = get_command_from_data(data)
                   print("Received command %s", command)


            if command == 'start':
                sending_measurements_enabled = True
            elif command == 'stop':
                break
            elif command == 'id':
                connection.sendall(self.id)
            elif command == 'cfg':
                connection.sendall(self.cfg)

            if sending_measurements_enabled:
                connection.sendall(measurement)

    except Exception as e:
       print(e)
    finally:
        connection.close()
        print("Connection closed")

2 个答案:

答案 0 :(得分:1)

<video preload="auto" autoplay loop muted>
<source src="video/ssweb.mp4" type="video/mp4"/>
<source src="video/ssweb.webm" type="video/webm"/>
</video>

muted attribute添加到<video>标记中。

答案 1 :(得分:-1)

在您解释问题时...请查看您的Chrome扩展程序&#39;在设置中,您可能有任何在播放视频时出现问题的扩展程序。

请尝试停止所有扩展程序,然后再次尝试运行该页面。希望它能奏效。