Skip to main content

How to Create YouTube Playlists without Logging In



Learn how to quickly create a YouTube playlist with your favorite YouTube videos but without logging into your Google Account.
How do you share a collection of YouTube videos in an email newsletter or on the social media. The best option is that you create a new YouTube playlist, add all the videos and then share the link (URL) of the playlist. The privacy of the YouTube playlist can be set to Unlisted if you would like to hide your video list from search engines.
It is easy to build playlists in YouTube but they are always connected to your YouTube channel or Google Account – you cannot create a playlist on YouTube anonymously without logging in to your account.
There’s however a simple URL hack that will let you create “virtual” playlists on YouTube – they are like regular playlists except that they are not connected to any Google account and you can still add or remove videos on the fly.
Create YouTube Playlists on the fly
All YouTube videos have a unique video ID and you can create a concatenated list of these video IDs, separated by commas, to create a new YouTube playlist from the corresponding videos.
For instance, here are 5 YouTube videos (video IDs are in red) that I would like to add to a playlist but one that is not associated with my YouTube channel:
1. www.youtube.com/watch?v=sjRTSkBHnyo
2. www.youtube.com/watch?v=fhU5y7huAY8
3. www.youtube.com/watch?v=9T_EqwQnZY0
4. www.youtube.com/watch?v=FQKvro1Wz-E
5. www.youtube.com/watch?v=BXLYIw-IU8I
All I have to do is take the video IDs and put them in the URL below:
http://www.youtube.com/watch_videos?video_ids=ID1,ID2,ID3,ID4…
So the new YouTube playlist will be located at:
https://www.youtube.com/watch_videos?video_ids=sjRTSkBHnyo,fhU5y7huAY8…
This is like any other playlist on YouTube – anyone can share it, embed it or even copy the playlist to their own Google Account.

Comments

Popular posts from this blog

Can I determine if my computer has a key logger installed? – YES!!!

Detecting keyloggers is as simple as looking in the right place (which may or may not be simple depending on your viewpoint). The problem is knowing what to look for and where. What follows is a non-exhaustive few things you could do to check for keylogging modules. Firstly, the obvious easy way to build a keylogger is to use DLL Injection which can be achieved a number of ways. Most of these will result in a DLL showing up as mapped to the process’s address space. Take a look at this picture: What is the topmost entry in that list? It’s a pyd , or python extension, file. I’ve been messing with python-implemented COM servers and as a result, the DLL is loaded into Windows Explorer’s address space. DLL Injection of the keylogging variety will load its DLL into all of the target address spaces – can’t capture everything if you don’t. So one thing to look out for would be strange DLLs you cannot attribute to products whose purpose you know. They’ll show up in this list for...

Live inside technology

Microsoft doesn’t just want you to use the latest Windows; it wants you to live inside of it. The company has revealed the HoloLens, a wearable holographic computer launching alongside Windows 10 that lets you project Windows apps onto the surfaces of your home or office. Holographic Fetus & Other Incredible 3D Tech 3D scanners are enabling us to see all kinds of things we’ve never dreamed of witnessing before. Microsoft outlined some of the uses of HoloLens in a demo video, which showcases how Windows apps can come to life once you put the headset on. Some examples include the ability to see Windows app icons on your kitchen cabinet, project a Skype call onto your wall and even physically manipulate a Minecraft world that’s laid out on your coffee table. The HoloLens itself is a black headset with a circular plastic headband and sunglass-like, see-through lenses in the front. The device uses a “high-end” processor and GPU, with an additional holographic processing uni...

How to Use the NETSH Command to Change from Static IP Address to DHCP

You can use the netsh command in Windows 2000 to script the process of changing a computer from a static Internet Protocol (IP) address to Dynamic Host Configuration Protocol (DHCP) or vice versa. The netsh command accomplishes this task without the need to restart the computer. This feature is particularly useful for laptops that move from one environment to another, when it is necessary to use statically assigned IP addresses at one location and DHCP assigned IP addresses at another. To switch the specified adapter from a static address to DHCP, type the following command: netsh interface ip set address “Local Area Connection” dhcp NOTE: Typing this command changes the interface named “Local Area Connection” to DHCP. To display all of the adapters in the computer with their current IP addresses to determine the correct adapter name, type the following command: Netsh interface ip show config To change to a static address, type the following command: netsh interface ip set ...