beamer : embedded video (.avi) in presentation












0















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.










share|improve this question























  • 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


















0















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.










share|improve this question























  • 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
















0












0








0








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.










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Feb 20 at 11:08









ReyhanehReyhaneh

63




63













  • 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





















  • 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



















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












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
});


}
});














draft saved

draft discarded


















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
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?