Skip to main content

You Tube Tricks


1. How to Download YouTube video without any software.

   *Select video that you want to download. Now you have to put "ss" before the URL in the URL bar. it will automaticaly redirect to the webpage from where you can eaisly get that video.

  * For Example URL is "https://www.youtube.com/watch?v=U9kCY9psgOc" you  have to replace this URL with "https://www.ssyoutube.com/watch?v=U9kCY9psgOc".

  * Done !!!

2. The Next article in this context of you tube is 'How to create a GIF image using YouTube video'.

 *It takes just number of simple  steps to make Gif image using YouTube video.

 * All you need to do is just change the URL  of the video with the prefix GIF.
 
   For example: your URL is "https://www.ssyoutube.com/watch?v=U9kCY9psgOc".
   change this one with "https://www.gifyoutube.com/watch?v=U9kCY9psgOc".
 
  *Done !!!

 3. Repeat the video as per your wish.

   * Sometimes we found some video on the YouTube which we like the most  and we want to watch        that video again and again. what if Someone provides you kind off looping system for replaying          that video again and again. Yes it is  possible just follow this simple steps.

   * All you need to do is just add 'repeater' after the youtube in the url like this :

   *  For example: your URL is "https://www.ssyoutube.com/watch?v=U9kCY9psgOc".
    change this one with "https://www.youtuberepeater.com/watch?v=U9kCY9psgOc".

Comments

Popular posts from this blog

Reflection of Google Chrome Apps/Extension's

As we all know everyone is lazy to do anything, everyone wants to complete his task with minimum number of efforts. Accordingly, technology is also changing day by day. From Websites to Mobile Apps to articles and now Chrome Extensions is in demand for now because of this you don't need to keep on checking website everytime for changes or something like this, also there are many chrome apps amazing functionalities which website doesn't provide so in the article we list down some cool Chrome extensions here. Message Saver For Facebook Message saver for Facebook is chrome extension which helps us to backup our FACEBOOK CHAT in .HTML format. try this out this is awesome app here. Get this app here... Wappalyzer Wappalyzer is a cross-platform utility that uncovers the technologies used on websites. It detects content management systems, ecommerce platforms, web frameworks, server software, analytics tools and many more. Get this app here... Click an...

Some New You Tube Facts come Tricks

Some New You Tube Facts come Tricks 1. Want to Download MUSIC  O nly from the You Tube Video you love ?     Simply Copy URL of the you tube video and go to website youtube-mp3.org enter the URL Copied and press convert and its DONE !!! 2. get tired of ad's in the you tube ?    Simply change the youtube to youtubeskip in the URL of any video. Stay in Touch for more Updates !!

EcmaScript 6 Startup tutorials

LET Keyword The  let  keyword declares a local variable in the block scope. Normally  if statements don’t have scope, but now they do with  let . This also works for loops too. for Example :  var x = 1 ; if (x < 10 ) { let v = 1 ; v = v + 21 ; console .log (v); } console .log (v); //v is not defined CONST keyword A  const  or a constant declaration is where once, the variable is set you can’t change it. It’s read-only. For example :    const admin = "jain";    admin = "pardeep" //not allowed...readonly