这篇文章讨论了如何split a video into multiple parts in Windows 11/10。如果你有一个大的视频文件,并且你想把它分成多个更小的视频片段,这篇文章是给你的。在这里,我们将提到多种方法,使您能够轻松地将视频分成几个较小的部分。现在让我们检查一下方法。
如何分割大的视频文件?
Windows 11/10上使用其原生照片(Photos)应用程序拆分大型视频文件。照片(Photos)应用程序带有一个内置的免费视频编辑器,可让您分割视频。或者,您也可以使用免费软件、在线工具或VLC媒体播放器来分割视频。我们已经讨论了分割视频的详细过程;你可以在下面查看它们。
如何在Windows 11/10视频(Video)拆分为多个部分
Windows 11/10 PC上将视频拆分为多个部分的方法:
- 使用照片(Photos)应用程序将视频拆分为多个部分。
- 使用(Use)免费的基于 GUI 的Video Splitter软件来分割视频。
- 通过命令行界面将视频分成几个部分。
- 使用免费的在线视频拆分器(Video Splitter)工具在线拆分视频。
让我们详细讨论上述方法!
1]使用照片(Photos)应用程序将视频分成(Split)多个部分
Windows 11/10照片(Photos)应用将视频拆分为多个部分。照片(Photos)应用程序具有内置的视频编辑器,可让您将视频分成两部分。我们已经分享了在照片中拆分或修剪视频(split or trim videos in Photos)的详细过程,您可以查看。
2]使用(Use)免费的基于GUI的Video Splitter软件来分割视频
将视频分成两个或多个部分的另一种方法是,您可以使用免费的第三方软件。有多种视频分割器软件可让您在Windows 11/10上分割视频。在这里,我们将使用这个名为LosslessCut的免费软件,您可以使用它将视频分成多个部分。现在让我们详细讨论这个软件。
LosslessCut是一款功能丰富的软件,可让您将视频剪切成几个较小的片段,而不会降低其质量。您可以根据需要选择将音频保留在输出视频中或从生成的视频片段中删除音频。让我们看看使用这个免费软件的步骤。
如何在Windows 11/10LosslessCut分割视频:
以下是使用LosslessCut(LosslessCut)将视频分割成多个片段的基本步骤:
- 下载无损剪辑。
- 启动这个便携式软件。
- 打开一个视频文件。
- 指定分割视频的开始时间和结束时间。
- 对多个视频部分重复(Repeat)步骤 (4)。
- 保存视频片段文件。
首先,您需要下载此免费软件,然后解压缩压缩文件夹。转到解压缩的文件夹并运行LosslesCut.exe应用程序文件。
File > Open”选项打开要拆分的视频文件。
接下来,选择设置剪切开始到当前位置(set cut start to current position)按钮设置开始位置,并使用设置剪切结束到当前位置(set cut end to current position)按钮设置结束位置来分割视频。
之后,单击光标处的分割片段(Split segment at cursor)按钮以添加视频片段。您可以在“要导出(Segments to export)的分段”部分下找到此按钮。
您可以重复上述步骤以添加要拆分的多个视频片段。
最后,单击导出(Export)按钮,然后选择各种输出选项,包括输出视频格式、剪切模式、输出目录等。然后,最后一次按下导出按钮。(Export)它将开始将视频拆分为选定的部分。
您可以从github.com下载它。
3]通过命令行界面将视频分成几个部分(Split)
您还可以通过Windows 11/10中的命令行界面分割视频。为此,您可以使用名为FFmpeg的流行的基于命令的音频和视频处理实用工具。它是一款免费、开源、便携的视频编辑软件(portable video editing software),可用于将视频分割成多个部分。除了视频分割,FFmpeg还可以用来执行很多与视频相关的任务。例如,您可以调整视频大小(resize a video)、批量旋转视频(batch rotate videos)、编辑视频元数据(edit video metadata)、从图像序列创建视频(create a Video from an Image sequence)等等。
现在让我们讨论如何使用FFmpeg通过命令行界面分割视频!
如何使用FFmpeg(FFmpeg)通过命令行界面将视频分割成多个部分
Windows 11/10中的命令提示符(Command Prompt)将视频拆分为多个片段的主要步骤:
- 下载 FFmpeg。
- 解压缩 ZIP 文件夹。
- 在解压缩的文件夹中打开命令提示符(Command Prompt)。
- 键入具有正确语法的视频分割命令。
- 按 Enter(Press Enter)执行命令并分割视频。
现在让我们详细说明上述步骤!
首先,只需从其官方网站下载 FFmpeg 。(download FFmpeg)然后,在Windows 内置压缩工具(Windows built-in compress tools) 或 Unzipper 免费软件(Unzipper freeware)的帮助下解压压缩文件夹 。
现在,转到FFmpeg文件夹,然后在 ffmpeg.exe 应用程序文件所在的文件夹中打开命令提示符。(open the Command Prompt in the folder)
接下来,您需要提供类似于以下的视频分割命令:
ffmpeg.exe -i input-video.mp4 -t 00:01:30 -c copy split1.mp4 -ss 00:02:40 -c copy split2.mp4 -ss 00:03:40 -c copy split3.mp4
在上面的命令中,我们将视频分成三个部分。第一个时间码00:01:30指定视频第一部分的持续时间,而00:02:40时间码用于说明第二个视频部分开始的时间。等等。
您需要将input-video.mp4替换为源视频的确切路径。此外,您可以输入输出视频部分的确切路径和文件名来代替 split1.mp4、split2.mp4 和 split3.mp4。否则,生成的视频将保存在FFmpeg文件夹中。
之后,只需按Enter按钮,它就会开始处理您的输入视频。在一段时间内,您将获得输出视频。
因此,这就是您可以在FFmpeg的帮助下使用简单命令轻松分割视频的方法。
请参阅:(See:) 如何从高质量视频中提取帧(How to extract Frames from a Video with high quality)
4]使用(Use)免费的在线视频拆分器(Video Splitter)工具在线拆分视频
您还可以使用免费的在线工具在网络浏览器中在线分割视频。您可以找到许多免费网站,这些网站使您能够分割视频并执行其他一些与视频相关的任务。要在线分割视频,我们将使用以下免费在线工具:
- 转换
- 在线分割视频
1]转换(1] Aconvert)
Aconvert主要是一个免费的文件转换工具,还提供一些视频编辑工具。它的视频编辑工具之一是视频分割器。您可以根据需要简单地使用它来分割视频。只需(Just)输入开始时间,然后输入分割视频的总持续时间。以下是使用这个方便的工具在线分割视频的步骤”
- 首先,在网络浏览器中打开Aconvert网站。
- 现在,选择要拆分的源视频文件。您可以从本地存储、 URL(URL)、Google Drive或Dropbox导入视频文件。
- 接下来,输入您要分割视频的开始时间。
- 之后,输入要分割的视频部分的总时长。
- 然后,按提交(Submit)按钮处理和分割视频。
- 最后,您可以下载输出视频。
您可以重复这些步骤将视频拆分为更多部分。访问这个网站(website)并尝试这个免费的在线工具来分割视频。
2]在线分割视频(2] Split Video Online)
顾名思义,Split Video Online是一款专用的在线工具,可让您将视频分割成多个部分。它是一个特色工具,但非常易于使用。使用它,您可以根据多个参数分割视频。它允许您通过输入时间码和持续时间来自由分割视频。或者,您可以使用平均分割(Average Split)方法,将视频分割成几个相等的部分。除此之外,您还可以按文件 zie 分割视频。只需(Just)输入每个部分或视频的文件大小,然后拆分视频。
以下是使用此在线工具分割视频的主要步骤:
- 首先,打开您的网络浏览器。
- 现在,访问Split Video Online网站。
- 接下来,从您的 PC 中选择一个视频文件。
- 之后,选择所需的视频分割方法,然后输入相关参数。
- 然后,您可以选择一种输出视频格式来导出生成的视频。它支持多种视频格式,包括MP4、GIF、AVI、MPV、FLV、MKV、WMV等。
- 最后,按拆分(Split)按钮开始视频拆分过程。
完成该过程后,您将能够下载视频部分。
您可以在此处(here)尝试在线分割视频。
如何在 VLC 中分割视频?
您可以使用一些简单的步骤在VLC中分割视频。以下是在VLC媒体播放器中拆分视频的主要步骤:
- 首先,如果您还没有,请下载并安装VLC 媒体播放器。(VLC media player)
- 现在,启动这个媒体播放器。
- 接下来,打开其中的源视频文件。
- 之后,单击“View > Advanced Controls选项;它将打开几个播放控制选项。
- 您现在需要将光标放在要分割视频的起点。
- 然后,按下红色按钮,即录制(Record)按钮。
- 现在,让视频播放并在视频到达终点时再次单击“录制”按钮。(Record)
它将分割视频,您很可能会在默认的视频(Videos)文件夹中找到输出。
就是这样!
现在阅读:(Now read:) 如何使用 Audacity 拆分和合并音频文件。
How to Split a Video into parts in Windows 11/10
This post discusses how you can split a video into multiple parts in Windows 11/10. If you have a large video file and you want to split it into multiple smaller video segments, this post is for you. Here, we are going to mention multiple methods that enable you to split a video into several smaller parts without any hassle. Let us check out the methods now.
How can I split a large video file?
You can split a large video file on Windows 11/10 using its native Photos app. The Photos app comes with an inbuilt free video editor that lets you split a video. Alternately, you can also use free software, online tools, or the VLC media player to split a video. We have discussed the detailed procedure to split videos; you can check them out below.
How to Split a Video into parts in Windows 11/10
Here are the methods to split a video into multiple parts on Windows 11/10 PC:
- Split a video into multiple parts using the Photos app.
- Use free GUI-based Video Splitter software to split a video.
- Split a video into several parts through the command-line interface.
- Use a free online Video Splitter tool to split a video online.
Let us discuss the above methods in detail!
1] Split a video into multiple parts using the Photos app
You can split a video into multiple parts using the native Photos app in Windows 11/10. The Photos app has a built-in video editor that lets you split a video into two parts. We have shared the detailed procedure to split or trim videos in Photos that you can check out.
2] Use free GUI based Video Splitter software to split a video
An alternative method to split a video into two or more parts, you can use free third-party software. There are multiple video splitter software that allow you to split videos on Windows 11/10. Here, we are going to use this free software called LosslessCut using which you can split videos into multiple sections. Let us discuss this software in detail now.
LosslessCut is feature-rich software that enables you to cut videos into several smaller segments without losing their quality. You can choose to keep the audio in output videos or remove the audio from the resulting video segments as per your requirement. Let us check out the steps to use this free software.
How to split a video using LosslessCut in Windows 11/10:
Here are the basic steps to split a video into several segments using LosslessCut:
- Download LosslessCut.
- Launch this portable software.
- Open a video file.
- Specify the starting and end time to split a video.
- Repeat steps (4) for multiple video parts.
- Save the video segment files.
Firstly, you need to download this free software and then unzip the compressed folder. Go to the extracted folder and run the LosslesCut.exe application file.
Now, simply open a video file that you want to split using the File > Open option.
Next, select the set cut start to current position button to set the starting position and use the set cut end to current position button to set the ending position to split a video.
After that, click on the Split segment at cursor button to add the video segment. You can find this button under the Segments to export section.
You can repeat the above steps to add multiple video segments that you want to split.
Finally, click on the Export button and then select various output options including output video format, cut mode, output directory, etc. And then, press the Export button one last time. It will start splitting the videos into the selected parts.
You can download it from github.com.
3] Split a video into several parts through the command-line interface
You can also split a video through the command-line interface in Windows 11/10. For that, you can use this popular command-based audio and video processing utility tool called FFmpeg. It is a free, open-source, and portable video editing software that can be used for splitting a video into multiple parts. Apart from video splitting, FFmpeg can be used to perform a lot of video-related tasks. For example, you can resize a video, batch rotate videos, edit video metadata, create a Video from an Image sequence, and do more.
Let us now discuss how you can split videos through the command-line interface using FFmpeg!
How to split a video into multiple parts through the command-line interface using FFmpeg
Here are the main steps to split a video into multiple segments via Command Prompt in Windows 11/10:
- Download FFmpeg.
- Extract the ZIP folder.
- Open the Command Prompt in the unzipped folder.
- Type a video splitting command with proper syntax.
- Press Enter to execute the command and split the video.
Let us elaborate on the above steps now!
Firstly, simply download FFmpeg from its official website. Then, unzip the compressed folder with the help of Windows built-in compress tools or Unzipper freeware.
Now, go to the FFmpeg folder and then open the Command Prompt in the folder where the ffmpeg.exe application file is present.
Next, you need to provide a video splitting command similar to the below one:
ffmpeg.exe -i input-video.mp4 -t 00:01:30 -c copy split1.mp4 -ss 00:02:40 -c copy split2.mp4 -ss 00:03:40 -c copy split3.mp4
In the above command, we are splitting a video into three parts. The first timecode 00:01:30 specifies the duration of the first part of the video, while the 00:02:40 timecode is used to tell the time from where the second video part will start. And, so on.
You need to replace input-video.mp4 with the exact path of the source video. Also, in place of split1.mp4, split2.mp4, and split3.mp4, you can enter the exact path and filename of output video parts. Else, the resulting videos will be saved in the FFmpeg folder.
After that, simply press the Enter button and it will start processing your input video. In a matter of some time, you will get the output videos.
So, this is how you can easily split a video using a simple command with the help of FFmpeg.
See: How to extract Frames from a Video with high quality
4] Use a free online Video Splitter tool to split a video online
You can also use a free online tool to split videos online in a web browser. You can find plenty of free websites that enable you to split videos and perform some other video-related tasks. To split videos online, we are going to use the following free online tools:
- Aconvert
- Split Video Online
1] Aconvert
Aconvert is primarily a free file converter tool that also provides some video editing tools. One of its video editing tools is a video splitter. You can simply use it to split videos as per your requirement. Just enter the starting time and then the total duration to split a video. Here are the steps to follow to split a video online using this handy tool”
- Firstly, open the Aconvert website in a web browser.
- Now, choose the source video file that you want to split. You can import a video file from local storage, URL, Google Drive, or Dropbox.
- Next, enter the starting time from where you want to split a video.
- After that, enter the total duration for the video part you want to split.
- Then, press the Submit button to process and split the video.
- Finally, you can download the output video.
You can repeat the steps to split a video into more parts. Go to this website and try this free and online tool to split videos.
2] Split Video Online
As the name suggests, Split Video Online is a dedicated online tool that enables you to split videos into multiple parts. It is a featured tool yet very easy to use. Using it, you can split a video based on multiple parameters. It allows you to split a video freely by entering timecode and duration. Or, you can use the Average Split method that lets you split a video into several equal parts. Apart from that, you can also split a video by file zie. Just enter the file size of each part or video and then split the video.
Here are the main steps to use this online tool to split a video:
- First, open your web browser.
- Now, go to the Split Video Online website.
- Next, select a video file from your PC.
- After that, choose the desired video splitting method and then enter the related parameters.
- Then, you can select an output video format to export the resulting videos. It supports a lot of video formats including MP4, GIF, AVI, MPV, FLV, MKV, WMV, etc.
- Finally, press the Split button to start the video splitting process.
When the process is done, you will be able to download the video parts.
You can try Split Video Online here.
How do I split a video in VLC?
You can split a video in VLC using some simple steps. Here are the main steps to split a video in the VLC media player:
- Firstly, download and install the VLC media player if you haven’t already.
- Now, launch this media player.
- Next, open the source video file in it.
- After that, click on the View > Advanced Controls option; it will open up several playback control options.
- You now need to put the cursor at the starting point from where you want to split the video.
- Then, press the red button which is the Record button.
- Now, let the video play and again click on the Record button when the video reaches the ending point.
It will split the video and you will most probably find the output in the default Videos folder.
That’s it!
Now read: How to split and merge audio files using Audacity.