在 Mac OS X 下将 WMV 文件嵌入到 Beamer 演示文稿中

在 Mac OS X 下将 WMV 文件嵌入到 Beamer 演示文稿中

简而言之,我创建了一个beamer包含嵌入式 WMV 文件的演示文稿。但是,Acrobat Reader 在 Mac OS 下无法识别该文件的格式,并且拒绝在 Windows 下播放该文件。如能提供任何关于如何解决此问题的建议,我将不胜感激。

为了更详细地描述这个问题,我最近使用以下 LaTeX 源创建了一个beamer嵌入 WMV 文件的演示文稿。

\documentclass[]{beamer}

\usepackage{movie15}
\usepackage{hyperref}
\usepackage{graphicx}

\title{A Tiny Movie Example}
\author{Beamer Author}
\date{Sept 10, 2011}

\begin{document}

\begin{frame}
  \frametitle{Sample Movie Clip}
  \begin{figure}[ht]
    \includemovie[poster,text={\includegraphics[width=8cm, height=6cm]
      {bbb-splash-thumb.png}},autoplay,mouse=true]{8cm}{6cm}
      {bbb.wmv}
  \end{figure}
\end{frame}

\end{document}

虽然编译时没有遇到任何问题,但在呈现时却遇到了问题,因为 Adob​​e Acrobat Reader 需要下载额外的媒体播放器(在 Mac OS 下)才能播放 PDF 文件中嵌入的媒体文件。在 Windows 下,它只能播放到 Windows Media 屏幕,然后就停在那里了。

当我尝试下载允许我在 Mac 上播放 WMV 文件的插件时,我收到以下通知,指出播放我的 Adob​​e PDF 文档中选定的媒体文件所需的第三方媒体播放器不适用于我的系统。

http://www.adobe.com/special/acrobat/nomediaplayer.html

为了解决这个问题,我最终下载了flip4mac,以为这样就能解决我的问题了。然而,Acrobat Reader 却无法识别允许其显示 WMV 文件的 QuickTime 插件。

当我在论坛上发布消息时Adobe Reader关于此事,我收到的答复如下:

Putting it bluntly, you shouldn't be embedding WMVs in PDF files anymore -
it's called "legacy media" and it's been discontinued for security reasons.
You can't author it in Acrobat X, and playback is disabled in all current
versions of Acrobat and Adobe Reader unless the user changes their security
options. Authors should be using Rich Media annotations, which embed FLV or
H.264 video and play cross-platform via an internal copy of Flash Player.

The weblink fired by Reader when it encounters legacy media for which the OS has
no registered handler understands that you're on a Mac - and as there are no
primary players for WMV files on OS X, that's what it tells you. Adobe does not
link to third-party add-ons for other software, and even with those installed it
will continue to complain unless the add-on has changed the file type
associations, so that WMV files +automatically+ open in Quicktime.

由于我对 Rich Media 注释或 H.264 视频一无所知,有人可以为我提供一个如何完成此操作的示例beamer吗?

答案1

我只需将 WMV 内容转换为 Adob​​e 喜欢的任何其他内容(或将我的 pdf 阅读器更改为其他东西并在演示过程中调用外部查看器,例如VLC 便携式它实际上可以播放除那些荒谬歌曲之外的所有歌曲。

在无数种可用于多媒体转换的软件中,有两种是米罗(基于 ffmpeg)和ffmpeg如果你知道如何走。

附录:我的离题个人愿望:我希望 Quicktime、Real Player、WMV 和其他超级烦人的格式以及卡特尔模仿公司的媒体播放器很快被遗忘,这样我们就可以获得跨平台的和平,就像原始海报只需选择主流媒体容器即可获得的那样。

答案2

有四个应用程序可用于 WMV:

  1. VLC/MPlayer OSX,播放大多数 WMV,响应速度快,VLC 在搜索时有一些遮罩
  2. QT+flip4mac,播放大多数WMV,响应缓慢
  3. Mac 版 Windows Media Player(ppc,旧版),播放全部内容,速度慢,不 UB
  4. Macgo 免费 Mac 媒体播放器,在Mac上播放大多数.wmv,界面清晰,响应迅速

请注意,有些 WMV(不受 DRM 保护)无法在 VLC/Mplayer/QT+flip4mac 中正常播放

相关内容