Shotcut full Vidoe Editer Tutorial Step by Step in 2020

Shotcut full Video Editor Tutorial Step by Step in 2020

 


Point Number 1. What we use Shotcut for as a Video Editor

This is a very big Question for every one why and which new features are we get in this software.

1. Free & Source Software

2. Simple to use

3. Light Weight Software

4. Available for Windows 7, Windows 8.1 and Windows 10.

5. You Can edit 4K Video

6. Many Audio and Video Effects

7. Free Transition.

8. Color Correction

9. If you want to read more about shotcut video editor features :- https://shotcut.org/features/


Point Number 2. Download Shotcut Video Editor

Now first we need to Download Shotcut video editor for windows laptop so first open your google and search "Shotcut Video Editor"  than open first website and Download them. it's my be only 134MB. Please Download for Windows laptop & Computer.


Point Number 3.  Open & Create Project

In this point we are learn how to create project and how to save and use after same day's, month's etc.
  • Where it save
  • How to reuse
  •  how to work on 2-3 project 
  • what do after close Project

 

Point Number 4. Basic of Shotcut Video Editor  

This is very big point for ever so we are completing this point in video 


Point Number 5. MY VIDEO CLIP FOR EDITING 

  1. Import Media 

If we can taking a new video clip for learning Video Editing and shotcut is already very essay and fast learner software for we are take a clip for 80% editing of learn by this point

Realme 7 Best Smartphone Under 15000 in India September 2020

Realme 7 Best Smartphone Under 15000 in India September 2020


  • now Realme launched a new series of has SmartPhone The realme 7 series. As you all know that the series of Realme 6 success now realme lunched a new osm and Amazing SmartPhone Series I According to all Series the realme always do best and better older series in his all series. 
  • Realme Launched 2 Smartphones in this 7 Series First one "Realme 7 and Realme 7 Pro
  • Today we are Discussingonly about realme 7, not 7 Pro because maybe We are creating a new post for realme 7 Pro but according to has price 20,000 we have more and many smartphones to competition realme 7 Pro just like poco X3, Redmi k20 and more so I'm Not included realme 7 Pro.

In this, we are Discussing
  • Camera
  • Processor
  • Performance
  • Display
  • Battery Life
  • More highlights
  • Price
 Realme 7 Best Smartphone Under 15000 in India September 2020

1. Realme 7 Real Facing Camera

Realme 7 has Sony 64MP Quad Camera

if you don't know what is Quad Camera. The best smartphones with a quad-camera make use of the four camera sensors with good intent. There's a primary camera with a wide aperture, an ultrawide lens, a telephoto lens, and a magic fourth, which can be anything from a macro lens to a ToF sensor enabling 3D imagery.

Realme 7 has 4 camera setup (64MP + 8MP + B&W + macro Lens)

64MP Primary Camera

26mm
f/1.8
Sony IMX682 Sensor
1/1.73” Sensor Size

8MP Ultra wide-angle lens

16mm
FOV 119°
f/2.3

B&W Portrait Lens

6 Filters
f/2.4

Macro lens

4cm Focal Distance
f/2.4

2. Video recording in Realme 7

I'm a YouTuber Video recoding part are very important for me in this device we have multiple options for recording video from back camera
  1. Support 4K/30fps Video Recording
  2. Support 1080P/30fps, 60fps, 120fps Video Recording
  3. Support 720P/30fps, 60fps, 240fps Video Recording
  4. Support UIS Video Stabilization
  5. Support UIS Max Video Stabilization
  6. Support Ultra-Wide Video

if you are a video creator this is the best Phone for you. For your Youtube videos, Blog Vidoe. So you are creating a video for YouTube you can recode 4k video on 30fps so this is the best Phone under 15000 for any YouTuber on September 2020 in India.


3. Realme 7 Frant/Selfie camera

Realme 7 has a Ok Ok Selfie Camera 16 MP f/2.1, Sony IMX 471

if you are looking at the best Selfie phone I this go with other because realme 7 not for Selfie camera it's has good Selfie but not for Selfie.


4. Realme 7 Processer

Realme 7 has Helio G95 Gaming Processor.
300,000 AnTutu Benchmark
CPU: Octa-core, Up to 2.05GHz
GPU: ARM Mali-G76 MC4


This is a very good processor for this prize. if you are playing some kind of game like PUBG and another Game for your Time only you don't get any problem

So on this prize, this processer is giving you the best value. and 90hz Display and 49000mhz Battery add better experience in your game.


5. Realme 7 Display

  • 90Hz Ultra Smooth Display
  • 16.5cm (6.5”) Fullscreen
  • Resolution: 2400x1080 FHD
  • Screen-to-body ratio: 90.5% 
  • PPI: 405 
  • Corning Gorilla Glass




6. Realme 7 Battery

  • 5000 mAh Battery
  • 30W Fast Charging
  • Type-C

7. Realme 7 Ram & Rom

RAM: 6GB/8GB LPDDR4x
ROM: 64GB/128GB UFS 2.1


8. Realme 7 More Highlights

Card Slot:- 2 SIM Slot + 1 MicroSD Slot
Weight:- 196.5gm
Operating:- Realme UI
System:- Android 10


9. What you get in Realme 7 Box

  1. Realme 7 Phone 
  2. 30W Charger
  3. Type-C Cable
  4. Protect Case
  5. Protect Film
  6. SIM Card Tool
  7. Warranty Card
Lecture-7 [Nested Loops with examples]

Lecture-7 [Nested Loops with examples]

Pattern 1


/*
*
**
***
****
*****
******
*******
********
*********
**********
*/

#include <iostream>
using namespace std;
int main()
{

    printf("Enter Number Of Row : ");
    int n;
    cin >> n;

    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <= i; j++)
        {
            printf("*");
        }

        printf("\n");
    }

    return 0;
}


Pattern 2

  /* 
         *
        **
       ***
      ****
     *****
    ******
   *******
  ********
 *********
**********

*/



#include <iostream>
using namespace std;
int main()
{
    printf("Enter Number Of Row : ");
    int n;
    cin >> n;

    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <=n; j++)
        {
            if (j <= n - i)
            {
                printf(" ");
            }
            else
            {
                printf("*");
            }
        }

        printf("\n");
    }

    return 0;
}


Pattern 3

/*
1
22
333
4444
55555
666666
7777777
88888888
999999999
*/


#include <iostream>
using namespace std;
int main()
{
    printf("Enter Number Of Row : ");
    int n;
    cin >> n;

    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <= i; j++)
        {
            cout << i;
        }
        printf("\n");
    }
    return 0;
}




Pattern 4

/*
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35 36
37 38 39 40 41 42 43 44 45
46 47 48 49 50 51 52 53 54 55

*/


#include <iostream>
using namespace std;
int main()
{
    printf("Enter Number Of Row : ");
    int n;
    cin >> n;
    for (int i = 1, k = 1; i <= n; i++)
    {
        for (int j = 1; j <= i; j++)
        {
            cout << k<< " ";
            k++;
        }
        printf("\n");
    }

    return 0;
}


Pattern 5

/*
         *
        ***
       *****
      *******
     *********
    ***********
   *************
  ***************
 *****************
*******************

*/


#include <iostream>
using namespace std;
int main()
{
    printf("Enter Number Of Row : ");
    int n;
    cin >> n;

    for (int i = 1, k=0; i <= n; i++, k=0)
    {
        for (int j = 1; j <= n - i; j++)
        {
            printf(" ");
        }
        while (k != 2 * i - 1)
        {
            printf("*");
            k++;
        }
        printf("\n");
    }

    return 0;
}
Lecture-5.6 [All Loop]

Lecture-5.6 [All Loop]

ForLoop


1. ForLoop.cpp


#include <iostream>

using namespace std;
int main()
{
    for (int i = 0; i <= 100; i++)
    {
        cout << i;
        cout << " ";
        printf("I Love My Dreams\n");
    }

    return 0;
}


2. ForLoop2.cpp


#include <iostream>

using namespace std;

int main()
{
    int a, b;
    printf("How Much you want the number\n");
    cin >> a;
    printf("Which Number you want maltiplay\n");
    cin >> b;
    for (int i = 1; i <= a; i++)

        if ((i % b) == 0)
        {
            cout << " =  " << i << "\n";
        }

    return 0;
}



While Loop


1. WhileLoop.cpp


/*in the programing
    1 = true
    0 = false */

#include <iostream>
using namespace std;
int main()
{

    while (1)
    {
        printf("Helle Brother\n");
    }

    return 0;
}


2. WhileLoop_2.cpp

#include <iostream>
using namespace std;
int main()
{

    int a = 0;
    while (a < 10)
    {
        printf("Vikash\n");
        a++;
        //a++ increasing value 1 by 1 of a
    }

    return 0;
}


3. WhileLoop_3.cpp


#include <iostream>
using namespace std;

int main()
{
    int a;
   
    cin >> a;

    while (a > 5 && a < 10)
    {
        printf("Hello\n");
        a++;
    }
}


4. WhileLoop_4.cpp

#include <iostream>
using namespace std;
int main()
{
    int a;
    printf("Enter Your Number For  Loop\n");
    cin >> a;
    while (a < 10 || a > 5)             // in this program || = OR when we are using this it chack both any if it get any true it run the program
    {
        printf("Hello\n");
        a++;
    }
}


Continue Loop


1. Continue.cpp

#include <iostream>
using namespace std;
int main()
{

    for (int i = 0; i < 10; i++)
    {
        if (i == 5)
            continue;
        cout << i;
        printf("\n");
    }

    return 0;
}


Brack Loop


1. BrackLoop.cpp


#include <iostream>
using namespace std;

int main()
{
    for (int i = 0; i < 10; i++)
    {
        if (i == 5)
            break;
        cout << i << endl;
    }
    return 0;
}
Lecture-4 [Conditional Statements]

Lecture-4 [Conditional Statements]

1. if-else-if.cpp


#include <iostream>
using namespace std;

int main()
{
    int age = 18;
    printf("What is you age\n ");
    cin >> age;

    if (age < 18)
    {
        printf("gar par ja kar so ja ");
    }
    else
    {
        printf("welcome bro yoyo");
    }

    return 0;
}



2. if-else-if.cpp


#include <iostream>

using namespace std;

int main ()
{
    int age=10;
    printf("Bosdi vala chacha umar bta ?\n");
   
    cin>>age;
    if (age<18)
    {
        printf("Ja ka dud pi nu BC");
    }
    else if (age>18)
    {
        printf("enjoy tau...");
    }
    else
    {
        printf("tara bs bi na ha khuvarss lutna");
    }
   
    return 0;


}





3.  Switch.cpp


#include <iostream>
using namespace std;
int main()
{
    int age = 80;
    printf("choose a Number\n");
    printf("A. 10\n");
    printf("B. 20\n");
    printf("C. 30\n");
    printf("D. Nothing\n");

    cin >> age;

    switch (age)
    {
    case 10:
        cout << "Wronge age";
        break;
    case 20:
        cout << "Right age";
        break;
    case 30:
        cout << "Wrong age";
        break;
    default:
        cout << "Thank you BC";
    }
    return 0;
}






My Test


1. Option.cpp



#include <iostream>
using namespace std;

int main()
{

    char c, a, b, d;
    printf("Whos is PM of India ?\n");
    printf("A. Rajiv Modi\n"
           "B. Vikash SIngh\n"
           "C. Narandra Modi\n"
           "D. Tara Chacha\n");
    cin >> c;

    if (c = a)
    {
        printf("you answare is Wrong\n");
    }

    if (c = b)
    {
        printf("Answare Worng\n");
    }

    if (c = c)
    {
        printf("Your answare is Right\n");
    }

    if (c = d)
    {
        printf("chala ja bosdi ka\n");
    }

    return 0;
}




2.  Switch.cpp


#include <iostream>

using namespace std;

int main()
{
    int ans = 10;
    printf("\n \n \n \n \n \n ");
    printf("Choose one Right Number\n");
    printf(" 1. Ajay Singh Shekhawat\n 2. Vikash Singh Shekhawat\n 3. Ishu Singh Shekhawat\n 4. All");

    printf("\n \n");

    printf("Enter you nummber\n \n");

    cin >> ans;

    switch (ans)
    {
    case 1:
        printf("Oh Your Answare is Right");
        break;

    case 2:
        printf("Sorry Your Name is Wronge");
        break;

    case 3:
        printf("Sorry Your Name is Wronge");
        break;

    case 4:
        printf("Sorry Your Name is Wronge");
        break;

    default:
        break;
    }
    return 0;
}
Lecture-3 [user input and output

Lecture-3 [user input and output

#include <iostream>
using namespace std;
int main ()
{
    int a=12, b=10, z;
    float f=3.5;
    char c='A';
    double d=3.56789;
    cout<<a<<endl;
    cin>>a;
    z=a%b;
    cout<<a<<" "<<b<<" "<<f;
    return 0;
}




//Second Project Same  



#include <iostream>
using namespace std;
int main ()
{  
    int a, b, c;
    printf("Please Enter first Number\n");
    cin>>a;

    printf("Enter Second Number\n");
    cin>>b;

    printf("Your Sam is ");
   
    cout<<a+b;

   printf("\n");
    return 0;
}
How To Create Backup in Realme Phone

How To Create Backup in Realme Phone

How To Create Backup in Realme Phone

Tutorial
  1. open your phone Setting
  2. Go To addition Setting
  3. Click on Backup & restore
  4. Click on create a backup
  5. and start the backup process

  • What is Backup in phone
    • backup means the software create a folder in your phone and Save all setting and apps  
    •  
  • Why we need to create a backup 
    • It's your choose why you are creating a backup
    •  
    •  When we need to reset our phone but we not want to lose our data and app installed in phone so we are creating a backup
    •  
    • second: When we are bought a new phone {but this is not best way to  for a new phone you need to create a clone of your phone by using clone app you find it on Play Store}
    •  
  • Where We use this backup
    • restore your data again
    • New Phone

Lecture 02 Installation & User Input Output

Lecture 02 Installation & User Input Output


2.1 Installation

In this step, we install MinGW and IDE for writing Program


2.2 Tokens in C++

In C++ has 4 typed tokens
Tokens in C++

2.2.1 Identifiers

Identifiers in C++

A C++ identifier is a name given to variable, Function, Class, Models, or any user-defined item.

For Example- Vikash is an identifier all people know me by my name Vikash so this is an identifier

Rules
1. Identifier Can Start from A to Z || a to z || _ || 0-9
2. Identifiers Can't Start From Punctuation Marks [! @ # $ % ^ & * ( ) ]
3. C++ is a Case Sensitive Language (A and a are Different)


2.2.2 Keywords

Keywords mean in C++ the same Keyword is already defended just like int, float, String, if, brack, and more.

The List of C++ Keywords

alignas (since C++11) double reinterpret_cast
alignof (since C++11) dynamic_cast requires (since C++20)
and else return
and_eq enum short
asm explicit signed
atomic_cancel (TM TS) export(1) sizeof(1)
atomic_commit (TM TS) extern(1) static
atomic_noexcept (TM TS) false static_assert (since C++11)
auto(1) float static_cast
bitand for struct(1)
bitor friend switch
bool goto synchronized (TM TS)
break if template
case import (modules TS) this
catch inline(1) thread_local (since C++11)
char int throw
char16_t (since C++11) long true
char32_t (since C++11) module (modules TS) try
class(1) mutable(1) typedef
compl namespace typeid
concept (since C++20) new typename
const noexcept (since C++11) union
constexpr (since C++11) not unsigned
const_cast not_eq using(1)
continue nullptr (since C++11) virtual
co_await (coroutines TS) operator void
co_return (coroutines TS) or volatile
co_yield (coroutines TS) or_eq wchar_t
decltype (since C++11) private while
default(1) protected xor
delete(1) public xor_eq
do register(2)


2.2.3 Operators 

Operators  in C++

Sysmble is operators & main 5 typed
1. Arithmetic operators
2. Assignment operators
3. Comparison operators
4. Logical operators
5. Bitwise operators



2.3 Data Types

There are 4 data types in C++
Data Types in C++