beamer : embedded video (.avi) in presentation
It's the first time that I'm using beamer to prepare my defense presentation. This is the beamer template that I'm using : template (pdflatex
version). In fact, I need to include several videos (.avi
) in my presentation. I've already tried the different ways proposed in this question. None of them worked :
begin{frame}{test.video}
includemedia[activate=pageopen,
width=200pt,height=150pt]{}{resources/video.avi}
end{frame}
or
begin{frame}{test.video}
movie[width=8cm,height=4.5cm]{play the video}{video.avi}
end{frame}
or
begin{frame}{test.video}
includemedia[
width=0.4linewidth,
totalheight=0.225linewidth,
activate=pageopen,
passcontext, %show VPlayer's right-click menu
addresource=video.avi,
flashvars={
%important: same path as in `addresource'
source=video.avi
}
]{fbox{Click!}}{VPlayer.swf}
end{frame}
begin{frame}{test.video}
includemedia[
activate=pageopen,
width=200pt,height=150pt,
addresource=video.avi,
flashvars={%
source=video.avi% same path as in addresource!
% &autoPlay=true% % optional configuration
% &loop=true% % variables
}
]{}{VPlayer.swf}
end{frame}
and the last one that I tried and was unsuccessful :
begin{frame}{test.video}
includemovie{.85textheight}{.85textheight}{video.mp4}%
end{frame}
They all create a white empty box that does not do anything. I have converted the videos to .mp4
, this did not help either. I have installed flash-player for adobe (version 2019.010.20091
). My operating system is : macOS High Sierra V. 10.13.6
. Your help would be greatly appreciated.
beamer embedding video
|
show 6 more comments
It's the first time that I'm using beamer to prepare my defense presentation. This is the beamer template that I'm using : template (pdflatex
version). In fact, I need to include several videos (.avi
) in my presentation. I've already tried the different ways proposed in this question. None of them worked :
begin{frame}{test.video}
includemedia[activate=pageopen,
width=200pt,height=150pt]{}{resources/video.avi}
end{frame}
or
begin{frame}{test.video}
movie[width=8cm,height=4.5cm]{play the video}{video.avi}
end{frame}
or
begin{frame}{test.video}
includemedia[
width=0.4linewidth,
totalheight=0.225linewidth,
activate=pageopen,
passcontext, %show VPlayer's right-click menu
addresource=video.avi,
flashvars={
%important: same path as in `addresource'
source=video.avi
}
]{fbox{Click!}}{VPlayer.swf}
end{frame}
begin{frame}{test.video}
includemedia[
activate=pageopen,
width=200pt,height=150pt,
addresource=video.avi,
flashvars={%
source=video.avi% same path as in addresource!
% &autoPlay=true% % optional configuration
% &loop=true% % variables
}
]{}{VPlayer.swf}
end{frame}
and the last one that I tried and was unsuccessful :
begin{frame}{test.video}
includemovie{.85textheight}{.85textheight}{video.mp4}%
end{frame}
They all create a white empty box that does not do anything. I have converted the videos to .mp4
, this did not help either. I have installed flash-player for adobe (version 2019.010.20091
). My operating system is : macOS High Sierra V. 10.13.6
. Your help would be greatly appreciated.
beamer embedding video
Which PDF viewer do you use? Do the video examples in themedia9
manual play?
– AlexG
Feb 20 at 11:25
I useAdobe Acrobat Reader DC (version 2019.010.20091)
. No, they do not work unfortunately.
– Reyhaneh
Feb 20 at 11:28
If you click the link, themedia9
manual most likely opens in the Web browser, not in AR DC. Download the PDF and open it in AR DC directly. Then, the video examples should play, provided that Flash Player was properly installed.
– AlexG
Feb 20 at 11:31
Yes, they work perfectly when I open the file using AR DC.
– Reyhaneh
Feb 20 at 11:41
Ok. Now, convert your avi to MP4. Take the code from the first box in tex.stackexchange.com/a/345433/36296 and paste it into an empty *.tex file. In the code, replace the m4v file with your MP4 file, compile and open PDF in AR DC.
– AlexG
Feb 20 at 11:54
|
show 6 more comments
It's the first time that I'm using beamer to prepare my defense presentation. This is the beamer template that I'm using : template (pdflatex
version). In fact, I need to include several videos (.avi
) in my presentation. I've already tried the different ways proposed in this question. None of them worked :
begin{frame}{test.video}
includemedia[activate=pageopen,
width=200pt,height=150pt]{}{resources/video.avi}
end{frame}
or
begin{frame}{test.video}
movie[width=8cm,height=4.5cm]{play the video}{video.avi}
end{frame}
or
begin{frame}{test.video}
includemedia[
width=0.4linewidth,
totalheight=0.225linewidth,
activate=pageopen,
passcontext, %show VPlayer's right-click menu
addresource=video.avi,
flashvars={
%important: same path as in `addresource'
source=video.avi
}
]{fbox{Click!}}{VPlayer.swf}
end{frame}
begin{frame}{test.video}
includemedia[
activate=pageopen,
width=200pt,height=150pt,
addresource=video.avi,
flashvars={%
source=video.avi% same path as in addresource!
% &autoPlay=true% % optional configuration
% &loop=true% % variables
}
]{}{VPlayer.swf}
end{frame}
and the last one that I tried and was unsuccessful :
begin{frame}{test.video}
includemovie{.85textheight}{.85textheight}{video.mp4}%
end{frame}
They all create a white empty box that does not do anything. I have converted the videos to .mp4
, this did not help either. I have installed flash-player for adobe (version 2019.010.20091
). My operating system is : macOS High Sierra V. 10.13.6
. Your help would be greatly appreciated.
beamer embedding video
It's the first time that I'm using beamer to prepare my defense presentation. This is the beamer template that I'm using : template (pdflatex
version). In fact, I need to include several videos (.avi
) in my presentation. I've already tried the different ways proposed in this question. None of them worked :
begin{frame}{test.video}
includemedia[activate=pageopen,
width=200pt,height=150pt]{}{resources/video.avi}
end{frame}
or
begin{frame}{test.video}
movie[width=8cm,height=4.5cm]{play the video}{video.avi}
end{frame}
or
begin{frame}{test.video}
includemedia[
width=0.4linewidth,
totalheight=0.225linewidth,
activate=pageopen,
passcontext, %show VPlayer's right-click menu
addresource=video.avi,
flashvars={
%important: same path as in `addresource'
source=video.avi
}
]{fbox{Click!}}{VPlayer.swf}
end{frame}
begin{frame}{test.video}
includemedia[
activate=pageopen,
width=200pt,height=150pt,
addresource=video.avi,
flashvars={%
source=video.avi% same path as in addresource!
% &autoPlay=true% % optional configuration
% &loop=true% % variables
}
]{}{VPlayer.swf}
end{frame}
and the last one that I tried and was unsuccessful :
begin{frame}{test.video}
includemovie{.85textheight}{.85textheight}{video.mp4}%
end{frame}
They all create a white empty box that does not do anything. I have converted the videos to .mp4
, this did not help either. I have installed flash-player for adobe (version 2019.010.20091
). My operating system is : macOS High Sierra V. 10.13.6
. Your help would be greatly appreciated.
beamer embedding video
beamer embedding video
asked Feb 20 at 11:08
ReyhanehReyhaneh
63
63
Which PDF viewer do you use? Do the video examples in themedia9
manual play?
– AlexG
Feb 20 at 11:25
I useAdobe Acrobat Reader DC (version 2019.010.20091)
. No, they do not work unfortunately.
– Reyhaneh
Feb 20 at 11:28
If you click the link, themedia9
manual most likely opens in the Web browser, not in AR DC. Download the PDF and open it in AR DC directly. Then, the video examples should play, provided that Flash Player was properly installed.
– AlexG
Feb 20 at 11:31
Yes, they work perfectly when I open the file using AR DC.
– Reyhaneh
Feb 20 at 11:41
Ok. Now, convert your avi to MP4. Take the code from the first box in tex.stackexchange.com/a/345433/36296 and paste it into an empty *.tex file. In the code, replace the m4v file with your MP4 file, compile and open PDF in AR DC.
– AlexG
Feb 20 at 11:54
|
show 6 more comments
Which PDF viewer do you use? Do the video examples in themedia9
manual play?
– AlexG
Feb 20 at 11:25
I useAdobe Acrobat Reader DC (version 2019.010.20091)
. No, they do not work unfortunately.
– Reyhaneh
Feb 20 at 11:28
If you click the link, themedia9
manual most likely opens in the Web browser, not in AR DC. Download the PDF and open it in AR DC directly. Then, the video examples should play, provided that Flash Player was properly installed.
– AlexG
Feb 20 at 11:31
Yes, they work perfectly when I open the file using AR DC.
– Reyhaneh
Feb 20 at 11:41
Ok. Now, convert your avi to MP4. Take the code from the first box in tex.stackexchange.com/a/345433/36296 and paste it into an empty *.tex file. In the code, replace the m4v file with your MP4 file, compile and open PDF in AR DC.
– AlexG
Feb 20 at 11:54
Which PDF viewer do you use? Do the video examples in the
media9
manual play?– AlexG
Feb 20 at 11:25
Which PDF viewer do you use? Do the video examples in the
media9
manual play?– AlexG
Feb 20 at 11:25
I use
Adobe Acrobat Reader DC (version 2019.010.20091)
. No, they do not work unfortunately.– Reyhaneh
Feb 20 at 11:28
I use
Adobe Acrobat Reader DC (version 2019.010.20091)
. No, they do not work unfortunately.– Reyhaneh
Feb 20 at 11:28
If you click the link, the
media9
manual most likely opens in the Web browser, not in AR DC. Download the PDF and open it in AR DC directly. Then, the video examples should play, provided that Flash Player was properly installed.– AlexG
Feb 20 at 11:31
If you click the link, the
media9
manual most likely opens in the Web browser, not in AR DC. Download the PDF and open it in AR DC directly. Then, the video examples should play, provided that Flash Player was properly installed.– AlexG
Feb 20 at 11:31
Yes, they work perfectly when I open the file using AR DC.
– Reyhaneh
Feb 20 at 11:41
Yes, they work perfectly when I open the file using AR DC.
– Reyhaneh
Feb 20 at 11:41
Ok. Now, convert your avi to MP4. Take the code from the first box in tex.stackexchange.com/a/345433/36296 and paste it into an empty *.tex file. In the code, replace the m4v file with your MP4 file, compile and open PDF in AR DC.
– AlexG
Feb 20 at 11:54
Ok. Now, convert your avi to MP4. Take the code from the first box in tex.stackexchange.com/a/345433/36296 and paste it into an empty *.tex file. In the code, replace the m4v file with your MP4 file, compile and open PDF in AR DC.
– AlexG
Feb 20 at 11:54
|
show 6 more comments
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f475807%2fbeamer-embedded-video-avi-in-presentation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f475807%2fbeamer-embedded-video-avi-in-presentation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Which PDF viewer do you use? Do the video examples in the
media9
manual play?– AlexG
Feb 20 at 11:25
I use
Adobe Acrobat Reader DC (version 2019.010.20091)
. No, they do not work unfortunately.– Reyhaneh
Feb 20 at 11:28
If you click the link, the
media9
manual most likely opens in the Web browser, not in AR DC. Download the PDF and open it in AR DC directly. Then, the video examples should play, provided that Flash Player was properly installed.– AlexG
Feb 20 at 11:31
Yes, they work perfectly when I open the file using AR DC.
– Reyhaneh
Feb 20 at 11:41
Ok. Now, convert your avi to MP4. Take the code from the first box in tex.stackexchange.com/a/345433/36296 and paste it into an empty *.tex file. In the code, replace the m4v file with your MP4 file, compile and open PDF in AR DC.
– AlexG
Feb 20 at 11:54