[Tex/LaTex] How to cite a speech only available as a YouTube-video

bibliographiesbibtexciting

I created a paragraph about Project Soli which was introduced at this year's Google I/O conference. However there are only two videos available.
This is one of them:
https://www.youtube.com/watch?v=mpbWQbkl8_g

How would you cite this speech and put it in the bibliography?

Best Answer

With package biblatex, you can cite online entries (@online) without anything to care about. All entry fields support an url field as well.

Remember, you can even refer to a very specific moment by appending the time to the youtube link.

\begin{filecontents}{\jobname.bib}
    @online{youtube,
        title = {Some cool motion sensor stuff},
        date = {2015},
        organization = {Youtube},
        author = {Peter Zatko and  Ivan Poupyrev and  Rachid El
        Guerrab and  Regina Dugan},
        url = {https://www.youtube.com/watch?v=mpbWQbkl8_g#t=20m15s},
    }
\end{filecontents}
\documentclass{article}
\usepackage[maxnames=10]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{hyperref}
\begin{document}
\cite{youtube}
\printbibliography
\end{document}

hedgeBiblatexYoutube

* links hidden for the screenshot

Related Question