[Tex/LaTex] How to cite from a video lecture/lecture note etc

citing

I found a question related to a lecture note here: How to cite a lecture note

But how could I cite a video lecture (from Youtube, or from coursera, Udacity, etc.)

Thanks a lot.

Update

I would like to publish on ACM/IEEE conference proceedings. I want to create an item on BIB file to insert it in Latex document.

Best Answer

When citing online sources, I was taught to cite at the very least the authors of the web page, the URL and the date the page was created. For a Youtube video, this might be the name of the channel and the date the video was posted.

An important addition to any web citation is the date you accessed it, as unlike print resources, webpages can change over time and the person reading your bibliography may not see the same information as you did at the time of citation.

For web resources, this is how I format my BibTex entries:

@misc{Stand, 
author = {O'Connor, J. J. and Robertson, E. F.},
title = {Emmy {Amalie} {Noether}},
howpublished = "\url{http://www-groups.dcs.st-and.ac.uk/~history/Biographies/Noether_Emmy.html}",
year = {2014}, 
note = "Accessed 11/02/16",
}

which looks like this

enter image description here

(blue hyperlink made using the hyperref package)

There are probably neater ways of doing it, but using the @misc means you can choose which fields you wish to enter. Your particular institution or assessor may demand additional information in your bibliography, so you can easily add those using this method.