how to cite youtube videos bibtex code example
Example: how to cite youtube videos bibtex
\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}