Skip to main content

How to share a Youtube video at a specific point in time


As a person who loves to watch different content on the famous video sharing platform everyone is familiar with, Youtube, sometimes I do like to share stuff with my own friends. Most of the time it happens that I want to show them a particular fragment of the video, not the entire media.


Copying the link as it is by default and sending it online can work, but such thing is very unpractical for us who love to spend a lot of time researching stuff on the Internet for the purpose of getting knowledge.

Time is money they say. I do say time is pricelessWith such thing in mind, I decided to share a simple trick which not many on the non technical side are aware. The simple hack is very useful when someone wants to share a video at a specific point of the playback.

First let's analyse the url of a Youtube videoThe purpose of the analysis is to explain to everyone the composition of the url, not a research on how the video platform sharing giant designs its own urls.

For the purpose of this tutorial, I am taking a Youtube video from on of my favorite movies which has been released lately, Home.

The following is the url.

https://www.youtube.com/watch?v=_tt0cuTQvvk
Let's split the above url in its smaller components from which it is being composed.

https is an internet protocol, youtube.com is the domain, watch is the verb and v is a parameter
What is to our interest is the parameters as a new one of them is needed for the purpose of accomplishing our task. The v parameter is given a certain value id which Youtube uses to match a specific video. It stands for video I think.
v=_tt0cuTQvvk
The parameter which we need is the t parameter. It stands for time. To make things more concrete I am showing the following.

t = 1m1s
The above piece of code can be used in a Youtube video url to target a specific frame on the media content like shown below.

https://www.youtube.com/watch?v=_tt0cuTQvvk&t=1m1s
When pasting the above url into the browser the video starts to play on 1:01. Very simple to understand, m stands for minute and s stands for seconds. To make stuff more concrete, take a look at the following screenshot which shows the above code in action.

In case the video is really long, as an addicted Youtuber that you are are, you can use the following code.

t = 1h2m1s where h stands for hour
As you guys can see it is really easy, not technical at all.

Comments

Popular posts from this blog

How to become a python coder, first part

What is python  Python is a high level computer programming language easy to learn and put in use by anyone who is passionate about coding. The first time I started reading some python code it felt like i was reading myself, I mean my thoughts converted to code.

How to open .epub files on Windows for free

Ebooks on internet come on different formats, most of them in pdf which is a very popular file format people use to share electronic documents. It happens that publishers don't use all the time pdf to distribute their content to the consumer, leaving the end user stuck in front of the computer. Most of the Windows operating system users, familiar with  Adobe Reader , are not able to open  EPUB  files they download online. The web is full of tutorials, useful to the average geek. On the other hand, the normal user struggles with the instructions written by technical bloggers on their sites. The purpose of this material is to help even the beginner user to open their  filename.epub  in the easiest way possible, free of charge. EPUB, what is it? EPUB is a format standard which defines how digital publications and electronic documents should be distributed or interchanged on the internet through a single file. It defines a means of packaging, encoding and representing HTML5

How to check if your system is 32bit or 64bit for Windows users

When downloading software on the Internet, knowing your system type for getting the right executable file is really important. Do you have a 32bit system or a 64bit one?