Forum Discussion

Rewaina's avatar
Rewaina
Brass Contributor
Sep 03, 2026

How can I record a video that I am watching on my computer?

Hi everyone,

Need to record a video that's playing on my computer, including the audio. Screen recording seems like the obvious solution, but I'm not sure which method gives decent video quality without making a huge file or causing the playback to stutter.

Ideally, I'd like to select the part of the screen where the video is playing, hit record, and save everything as an MP4 when it's finished.

How can I record a video that I am watching on my computer? Looking for something simple that doesn't require a complicated setup.

9 Replies

  • Fabrum's avatar
    Fabrum
    Iron Contributor

    For the best how to record a video that I am watching on your computer, set your microphone and system audio to the same sample rate (like 48 kHz) to prevent audio drift and sync issues.

  • Lancesocon's avatar
    Lancesocon
    Tin Contributor

    For a how to record a video that I am watching on my computer, the silent output from pyscreenrecorder makes it suitable. The project is built around a high-performance C++ recording engine that interfaces with Python . This technical design makes it a robust, code-driven recording tool, ideal if you prefer a complex, free method over third-party software.

    To use it, you can launch the application directly as a module from the command line after installation:

    bash
    python -m screen_recorder

    When the application launches, it presents a main window with controls and includes keyboard shortcuts for easy operation:

    - F9: Start or stop recording.
    - Ctrl+P: Pause or resume recording.
    - Ctrl+Q: Quit the application.
    - Esc: Cancel region selection.

    Its ability to capture system audio and use GPU hardware encoding makes it a powerful alternative for this task compared to other Python libraries.

    How to record a video that I am watching on my computer:

    1. Launch the application to see the main window with controls.
    2. Select a capture source—choose a display or draw a custom region using the overlay selector .
    3. Configure audio—in the settings panel, enable your microphone and/or system audio capture (the WASAPI loopback on Windows) .
    4. Start recording—press F9 or click the Record button .
    5. Stop recording—press F9 again; the MP4 file is saved to your output directory .
  • Lennonui's avatar
    Lennonui
    Tin Contributor

    How much do you know about OpenScreen? It is a powerful open-source alternative if your goal is to learn how to record a video that I am watching on my computer, that focuses on turning raw screen captures into polished demo videos.

    On Windows 11, you have a couple of simple options to install OpenScreen.

    • Microsoft Store (Recommended): You can install it directly from the Microsoft Store. OpenScreen is signed by Microsoft, which ensures a secure installation with automatic updates . You can install it by running this command in your terminal:

    powershell
    winget install --source msstore OpenScreen

    • Standalone Installer: You can also download the .exe installer directly from the OpenScreen Releases page on GitHub. Because this version is not signed, Windows SmartScreen may warn you; you'll need to click More info and then Run anyway to proceed .

     

    How to record a video that I am watching on my computer?

    1. Launch OpenScreen, and a small toolbar will appear on your desktop.
    2. Click the Screen button, then choose Window to select a specific application (like your video player or browser) or Screen to record the entire display .
    3. Before you start recording, you can enable audio capture. Click the speaker icon to record system audio (the sound from your computer) and the microphone icon to record your own voice .
    4. Press the Record button to begin capturing the video that you are watching on your computer .
    5. Press the Record button again to stop. Your video will then automatically open in the OpenScreen editor .

     

    OpenScreen meets all your criteria: it's completely free, open-source, and avoids the common tools you listed . Its intuitive interface and powerful editing features make it the easiest and most effective way to record a video that you are watching on your computer without any technical complexity.

  • Ziaoik's avatar
    Ziaoik
    Iron Contributor

    This approach is a highly effective way to record a video that I am watching on my computer. Here is a basic command that captures your entire screen and saves it as an MP4 file.

    text
    ff mpeg -f gdigrab -framerate 30 -i desktop -c:v libx264 -preset ultrafast output.mp4

    • -f gdigrab: This tells FF mpeg to use the Windows GDI screen capture method .
    • -framerate 30: This sets the recording frame rate to 30 Frames Per Second. You can change this to 60 for smoother motion .
    • -i desktop: This specifies that the entire desktop is the input source .
    • -c:v libx264: This uses the H.264 video codec, which provides a good balance of quality and file size .
    • -preset ultrafast: This prioritizes recording speed to reduce the load on your CPU during capture .
    • output.mp4: The name of your final video file.

     

    When it comes to how to record a video that I am watching on my computer, you would press Q or CTRL + C in the Command Prompt window to stop the recording.

    FF mpeg's strength lies in its flexibility. You can modify the command to better suit your needs.

    Capture a Specific Region: Instead of the whole screen, you can define a specific area.

    text
    ff mpeg -f gdigrab -framerate 30 -offset_x 100 -offset_y 100 -video_size 1280x720 -i desktop output.mp4

    This captures a 1280x720 pixel region starting 100 pixels from the top-left corner of your screen.

    Capture a Specific Window: You can even target a particular application window by its title.

    text
    ff mpeg -f gdigrab -framerate 30 -i title=Calculator output.mp4

    Optimize for CPU Performance: If you have a powerful PC and want the absolute highest quality for how to record a video that I am watching on my computer, you can use lossless encoding. This creates very large files but preserves perfect quality.

    text
    ff mpeg -f gdigrab -framerate 60 -i desktop -c:v libx264 -preset ultrafast -crf 0 output.mp4

    The -crf 0 flag enables lossless encoding.

  • Xioun's avatar
    Xioun
    Iron Contributor

    If all you need is a quick way to capture something already playing on your PC, ScreenRec keeps the whole process fairly straightforward. It can be handy for record a video that I am watching on Windows pc without having to learn a bunch of complicated recording settings

    How to Record a video that I am watching on Windows PC

    Step 1: Launch the software and select the area you want to record.

    Step 2: To record the video's audio, enable system audio.

    Step 3: Click Record and start playing the video.

    Finally, when the recording is complete, click Stop and view the saved MP4 file.

    Points to Note: There are few advanced control options, so its functionality for detailed recording settings is somewhat basic.

    If you just want to record your screen without spending time figuring out complicated settings, this software is a good choice. Although it doesn't have many advanced features, it gets the job done for quick, everyday screen recordings.

  • Munasian's avatar
    Munasian
    Iron Contributor

    When you’re watching a video on your laptop and want to record it, you don’t need to use complicated video editing software. OBS Studio is an open-source screen recording tool that can record either your entire screen or a specific application window, while allowing you to control the resolution, frame rate, and recording quality.

    • After opening the software, to record the entire screen, add a Display Capture; to capture only the video player, add a Window Capture.
    • Next, go to Settings → Output → Recording, and select the appropriate recording format.
    • If your computer supports a hardware encoder, select the corresponding hardware encoder.
    • Under the Video options, 1080p and 30 or 60 FPS are common choices, depending on how smooth you want the recorded video to be.

    Disadvantages:

    • Initial setup takes a little time.
    • High-quality recordings take up a lot of storage space.
    • Encoder options vary depending on the hardware.

    For anyone searching for How to record a video that I am watching on my laptop, this software offers a flexible way to capture what’s on the screen. Before recording, make sure the desktop or window preview displays the correct content, and check the audio level meter to ensure both video and audio are being captured as expected. Thus, the question of How to record a video that I am watching on my laptop can be easily resolved with simple screen recording settings.

    Notes

    • When recording, make sure the recording area and audio source are correct.
    • Since computer performance is limited, you can use 30 FPS to reduce the load.
    • We recommend selecting sufficient storage space to save the recorded files.
  • Easmkom's avatar
    Easmkom
    Iron Contributor

    If you need to quickly record a video you’re watching on your laptop without installing any third-party software, the Windows Game Bar is the simplest built-in solution.

    Although it’s primarily designed for recording gameplay, it works just as well for recording any on-screen activity, including videos, presentations, or video calls.

    How to record a video that I am watching on my laptop With just a few keyboard shortcuts, you can start or stop recording in seconds.

    How to record a video that I am watching on my laptop

    1. Press the Windows key + G to open the Game Bar overlay.
    2. If the app you want to record isn’t recognized as a game, check the Yes, this is a game checkbox. This ensures that the Game Bar captures the correct window.
    3. Click the Record button or press the Windows key + Alt + R to start recording.
    4. To enable the microphone, click the microphone icon in the overlay.
    5. To stop recording, press the Windows key + Alt + R again or click the Stop button.
    6. Recordings are automatically saved in the Videos → Screen Recordings folder, with filenames that include a timestamp.

    The Windows Game Bar is arguably the quickest and easiest method—it’s built-in and requires no configuration. It’s ideal for everyday recording, quick tutorials, or saving short video clips.

    P.S.


    • If the Game Bar isn't showing, make sure you've enabled it in Windows Settings → Gaming → Game Bar.
    • Due to digital rights management (DRM) protection, the Game Bar cannot capture content from apps such as Netflix, Spotify, or certain web browsers.
    • The recording quality is sufficient for basic screen recording needs but is not suitable for professional use.
  • Saving something playing on your screen can be useful when you need to review a presentation, tutorial, or other permitted video later. For users who want to record a video that I am watching on my computer, VokoscreenNG provides screen-recording controls for capturing a full display, a selected window, or a specific area, along with system audio or microphone input when supported.

    How to record a video that I am watching on my computer

    Step 1: Open the program and choose the screen-recording mode. Select the entire screen, a specific window, or an area of the screen depending on where the video will be playing.

    Step 2: Open the audio settings and select the appropriate audio source. Choose system or output audio when you want to capture the video's sound, and enable the microphone only if you also want to record your own voice.

    Step 3: Review the recording settings and choose the video format, frame rate, and other available quality options. Select a destination folder where the finished recording will be saved.

    Step 4: Open the video you want to capture and position its window correctly. Return to the recorder and start recording, then begin playing the video.

    Step 5: Let the video play normally while recording. Avoid moving unrelated windows over the selected capture area because anything visible inside that area can appear in the recording.

    Step 6: When the video finishes, stop the recording. Open the saved file and check the picture, audio synchronization, and overall quality before keeping or sharing it.

    Screen recording captures what is displayed while the video plays, so selecting the correct capture area and audio source before starting is important. For copyrighted or protected content, make sure recording is permitted and be aware that some protected video services may prevent screen capture.

  • AidenDavis's avatar
    AidenDavis
    Iron Contributor

    Looking to record a video that I am watching on my computer without installing heavy software? Screenity is a free open-source browser extension that runs right in Chrome or Edge. It lets you capture a specific tab, a single window, or a selected area of your screen, and also supports recording system audio and microphone input at the same time.

    To get started, install Screenity from the Chrome Web Store. Once added, open the extension, choose your recording mode (tab, window, or region), and select the area where your video is playing. Make sure to enable audio capture and adjust the microphone and system sound levels if needed. Hit the record button, play your video, and stop when finished. The file will save directly to your computer as an MP4 or WebM—no uploads, no accounts, and no extra steps.

    If you're still trying to record a video that I am watching on my computer and want a simple browser-based tool, Screenity handles the job well. It won't give you advanced editing features, but it captures clean video and audio without slowing down your system. Just keep in mind performance may vary depending on your browser and system resources.

    Pros:

    • Browser-based, no installation required.
    • Supports system audio and microphone recording.
    • Saves directly to your device—no uploads or accounts.

    Cons:

    • Performance depends on browser and system resources.
    • No built-in video editing or advanced recording settings.