如何通过适用于 Android 的 mupdf 库查找和检索 pdf 文件中的视频内容
我需要检查 Richmedia 内容(嵌入 pdf 文件中的视频)是否在 pdf 文件中可用,或者是否通过 android 应用程序的 mupdf 库可用。
如果是,那么我需要通过 pdf 解析检索流内容并将其转换为字节数组并运行 pdf 中找到的视频。
这可能吗?
I need to check if a Richmedia content (video embedded in a pdf file) is available in a pdf file or not via mupdf library for an android application.
If it is then I need to retrieve the stream content via pdf parsing and convert in to a byte array and run the video found in the pdf.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MuPDF 不支持嵌入视频。您仍然可以使用该库检查 PDF 对象结构并从 PDF 文件中提取数据流。查看“pdfshow”和“pdfextract”工具以获取灵感。
MuPDF does not support embedded video. You can still use the library to examine the PDF object structure and extract data streams from PDF files. Look at the "pdfshow" and "pdfextract" tools for inspiration.
您可以尝试使用 iText for android,尽管它似乎是一个受限制的版本。有一篇关于如何使用 iText 此处。
You could try using iText for android, although it seems to be a constrained version. There is a post on how to extract media objects from pdf files with iText here.