How to split a long video into parts for a youtube series
- Step 1Decide your target episode length — For a YouTube series, 8–15 minutes per episode usually balances retention and ad eligibility (videos 10 minutes or longer support manual mid-roll ads). Decide the length you want before choosing a part count.
- Step 2Convert episode length to a part count —
parts = round(total minutes ÷ target episode minutes). A 72-minute master at ~12-minute episodes is72 ÷ 12 = 6parts. The splitter divides by count, so this is the number you enter. - Step 3Drop the master and set Number of parts — Accepts MP4, MOV, MKV, WEBM, AVI, M4V, TS. Enter your part count (2–20). There is no 'episode every N minutes' mode — you give the count and it computes the length.
- Step 4Run the lossless split — FFmpeg.wasm extracts each episode with
-ss START -i master -t SEGLEN -c copy -avoid_negative_ts make_zero. No re-encode means your export quality is preserved exactly for upload. - Step 5Upload each part as its own video — Extract
name-parts.zip, then uploadname-part-1…name-part-Nas separate videos. Title them 'Part 1 of N', add them to a playlist in order, and link the next part in each end screen. - Step 6Tidy episode boundaries if a cut lands mid-sentence — Because boundaries snap to keyframes, an episode may begin a second or two before the intended point. If a clean cut on a phrase matters, trim that specific boundary with lossless-trimmer before or after splitting.
Part count for common master lengths and episode targets
Equal split divides total runtime by the part count. Pick the count whose episode length suits your series.
| Master length | ~10 min episodes | ~12 min episodes | ~15 min episodes |
|---|---|---|---|
| 60 min | 6 parts | 5 parts | 4 parts |
| 72 min | 7 parts | 6 parts | 5 parts |
| 90 min | 9 parts | 8 parts | 6 parts |
| 120 min | 12 parts | 10 parts | 8 parts |
Episode-length considerations for YouTube
Episode length affects retention and monetisation. These are platform behaviours, not splitter settings.
| Episode length | Effect |
|---|---|
| Under 8 min | Snappy, high completion rate; mid-roll ads not available (need 10 min+) |
| 8–15 min | Common series sweet spot; 10 min+ supports manual mid-roll placement |
| 15–25 min | Deeper episodes; retention curve matters more, fewer parts to manage |
| Over 25 min | Approaches the 'long-form' problem you split to avoid — use fewer, shorter episodes |
Splitter facts that matter for series upload
Real behaviour of the equal-split tool, relevant to series creators.
| Property | Value |
|---|---|
| Part range | 2–20 |
| Quality | Lossless (-c copy, no re-encode) |
| Boundary precision | Nearest keyframe (not frame-accurate) |
| Output | ZIP of ordered parts, same container as input |
| Free tier file cap | 1 GB (Pro: 10 GB) |
Cookbook
Turning a single recording into an ordered YouTube series. Counts are chosen to hit common episode lengths.
72-minute tutorial into a 6-part series
Aim for ~12-minute episodes so each clears the 10-minute mid-roll threshold.
Input: course-master.mp4 (72:00) Math: 72 / 12 = 6 episodes Option: Number of parts = 6 Output: course-master-parts.zip course-master-part-1.mp4 ... -part-6.mp4 (~12:00 each) Upload each as 'Part N of 6', add to one playlist.
Two-hour stream into 8 episodes
A long stream VOD becomes a digestible series with consistent ~15-minute episodes.
Input: stream-vod.mkv (120:00) Math: 120 / 15 = 8 Option: Number of parts = 8 Result: 8 .mkv episodes, lossless, ready to upload in order. Container stays MKV (transcode if your workflow prefers MP4 for upload).
Short course, fewer longer episodes
Not every series needs many parts. Four 15-minute episodes can outperform eight 7.5-minute ones for depth-focused content.
Input: workshop.mp4 (60:00) Option: Number of parts = 4 -> ~15:00 episodes Four titles, four thumbnails, one playlist.
Clean the episode-1 intro boundary
Keyframe snap may start an episode slightly early. Fix the one boundary that matters.
Split first (lossless, fast), then if Part 2 starts mid-sentence: lossless-trimmer on Part 2 -> trim the leading half-second to a clean phrase boundary. (Route: /video-tools/lossless-trimmer)
Keep a draft series local before publishing
Splitting in-browser means the unlisted master never uploads anywhere except YouTube, when you choose.
Input: unreleased-series.mp4 (sponsor embargo) Option: Number of parts = 5 Processing: FFmpeg.wasm, no server. Upload episodes as unlisted, schedule the public release, then flip to public on launch day.
Edge cases and what actually happens
Episode starts mid-sentence
By designStream-copy cuts land on the nearest keyframe, so an episode can begin a second or two before the intended point and clip into a phrase. For a clean break on speech, trim that boundary with lossless-trimmer. This is the trade for instant, lossless splitting.
Want chapter markers instead of separate uploads
Different toolIf you'd rather keep one video with YouTube chapters than publish separate episodes, this splitter isn't the route — chapters are timestamps you add in the description. To read existing chapter markers from a file, use chapter-extractor; to auto-find natural cut points, scene-detector.
Episodes come out shorter than 10 minutes
ExpectedMore parts means shorter episodes. Below 10 minutes you lose manual mid-roll ad eligibility. If monetisation matters, reduce the part count so each episode reaches at least 10 minutes.
Need more than 20 episodes
ClampedThe part count maxes at 20. A very long master that would produce more than 20 episodes can be split into 20 first, then a part re-split — but consider whether longer episodes serve the series better than 20+ tiny ones.
Output container isn't YouTube's preferred MP4
PreservedThe parts keep the input container. YouTube accepts MKV, MOV, WEBM, and more, but if your upload pipeline expects MP4, convert with video-transcoder before or after splitting.
Thumbnails and intros aren't added
Out of scopeThe splitter only cuts; it doesn't add intros, outros, or thumbnails to each episode. Add those in your editor before splitting (so every episode shares them) or per-episode after, then upload.
Variable frame rate master
PreservedVFR recordings keep their timing through stream-copy, so episode durations reflect the real timeline. Boundaries still follow keyframes regardless of the frame-rate variation.
Master exceeds your tier's file cap
RejectedA multi-gigabyte two-hour 4K master is rejected on Free (1 GB). Pro (10 GB) or higher is needed. The limit is on file size; there is no cap on video duration or episode count beyond the 20-part maximum.
Audio out of sync after upload
Check sourceStream-copy preserves A/V sync and -avoid_negative_ts make_zero rebases timestamps cleanly, so drift after upload usually points to a source already slightly out of sync, or YouTube's re-encode of an unusual codec. Verify a part plays in sync locally before blaming the upload.
Frequently asked questions
How do I turn one long video into a YouTube series?
Decide your target episode length, convert it to a part count (total minutes ÷ episode minutes), and split. The tool divides your master into that many equal parts losslessly. Upload each part as its own video, title them 'Part N', and group them in a playlist.
How long should each episode be?
8–15 minutes is a common series range. Episodes of 10 minutes or longer also support manual mid-roll ad placement on YouTube. Choose a part count that lands episodes in that window — fewer parts for longer episodes, more for shorter.
Does splitting reduce quality before upload?
No. The split uses stream-copy (-c copy), so each episode is bit-identical to the master. YouTube will re-encode on its end, but your source going in is full quality — splitting adds no generation loss.
How many episodes can I make?
Between 2 and 20. The part count is clamped to that range. If you need more than 20 episodes, split into 20 first then re-split a part, though longer episodes are often better for a series than 20+ tiny ones.
Can the tool add YouTube chapters instead of separate files?
No — chapters are timestamps you put in the video description, not a split. The splitter produces separate episode files. To read chapter markers already in a file use chapter-extractor.
Will the parts be exactly equal episodes?
They target equal length, but each cut snaps to the nearest keyframe, so durations vary by up to one keyframe interval. If a specific episode must start at an exact frame, trim that boundary with lossless-trimmer.
What format do the episodes come out as?
The same container as your input — MP4 in, MP4 out; MKV in, MKV out. YouTube accepts many containers, but if your pipeline expects MP4, convert with video-transcoder.
Is my unpublished video uploaded anywhere?
No. Splitting runs in your browser via FFmpeg.wasm. The master never leaves your machine, so a draft or embargoed series stays private until you upload the episodes to YouTube yourself.
How do I keep episodes in the right order?
The parts are named name-part-1 … name-part-N in sequence. Upload them in that order, title each 'Part N of M', add them to a single playlist, and link the next part in each episode's end screen.
Can I add an intro to every episode?
Add a shared intro in your editor before splitting so all episodes carry it, then split. The tool itself only cuts — it doesn't insert intros, outros, or thumbnails.
How big a master can I split?
Free allows one file up to 1 GB; Pro up to 10 GB; Pro + Media / Developer up to 100 GB. A two-hour 4K stream VOD usually needs Pro or higher. There is no limit on duration, only on file size.
What if I want to find natural cut points rather than even splits?
Equal splitting won't respect scene changes. To locate natural boundaries, run scene-detector for a list of cut timestamps, then trim at those points with lossless-trimmer.
Privacy first
Every JAD Video tool runs entirely in your browser via WebCodecs and FFmpeg (WebAssembly). Your video files never leave your device — verified by zero outbound network requests during processing.