Skip to content

Instantly share code, notes, and snippets.

@cborac
Last active July 25, 2020 18:25
Show Gist options
  • Save cborac/b6dfcf4f2ca32887097ba40e16e19aa2 to your computer and use it in GitHub Desktop.
Save cborac/b6dfcf4f2ca32887097ba40e16e19aa2 to your computer and use it in GitHub Desktop.

How to get Youtube Video ID

Way 1

Step 1

Select a Youtube video. I choosed Lil Nas X - Old Town Road (Official Video) ft. Billy Ray Cyrus for this example.

Step 2

Go to the URL and select the code for the v query.

Result

The code for this video is r7qovpFAGrQ

Way 2

Step 1

I choosed True Damage - GIANTS (ft. Becky G, Keke Palmer, SOYEON, DUCKWRTH, Thutmose) | League of Legends this time.
Click on somewhere on the page and select Inspect

Step 2

There select Console

Step 3

Enter the following line

new URLSearchParams(location.search).get('v')

then press ENTER

Result

The code for this video is sVZpHFXcFJw

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment