我正在尝试将实时摄像头视频从Android设备流到网页。目前我使用libstreaming库将摄像机视频流到vlc播放器。
当我在nexus 5设备上部署这个项目时,它运行良好,我可以在vlc播放器中看到摄像机视频流。但是当我试图在google glass中部署相同的代码时,它向我抛出了一个错误:“错误:找不到stsd框”
此错误来自第63行的MP4Parser.java文件。

public StsdBox getStsdBox() throws IOException {
                try {
                        return new StsdBox(fis,getBoxPos("/moov/trak/mdia/minf/stbl/stsd"));
                } catch (IOException e) {
                        throw new IOException("Error: stsd box could not be found");
                }
        }

如果有人知道这个问题,请帮助我。
谢谢您,
快乐编码:)

最佳答案

在最近的提交中修复了这个问题,我可以成功地从google glass流到一个网页。
http://www.ohloh.net/p/libstreaming-examples/commits/318839206

10-05 18:26