I want to make a table in latex with different posters from movies that when I click on them, vlc should open and play the movie the poster is displaying.
So what I have been trying out is this, I have used href to open a pdf document separate from the document in question. I have tried to open an mkv file with href as well, but to no avail. So I thought of making a script that opens the file in question and playing it in vlc making it full screen from the get go. (I haven't completed this task as of yet, but google is my friend)
The question before I start making scripts for each and every video file is this. Has this been done before, does anyone know a better easier solution? I want to sort my entire video library this way, and it is a lot of ripped copies as I have put my collection on storage and am trying to make it easier to find the movies I have.
Is there any way of opening scripts this way?
This is my latex document thus far:
\documentclass{article}
\usepackage{graphicx}
\usepackage[margin=5pt]{geometry}
\usepackage{hyperref}
\begin{document}
\begin{tabular}{ l | c | r }
\href{run:./firstscript.sh}{\includegraphics[width=4cm,height=4cm,keepaspectratio]{pictures/2fast2furious.jpg}}&movie 2& movie 3\\
movie 4 & 5 & 6 \\
7 & 8 & 9 \\
\hline
\end{tabular}
\end{document}
