Q:"I've got some .ts videos, I wanna cut them without losing quality or converting. So the software must just cut and export the contents of original .ts file without any conversion to preserve the original quality. Which software is recommended for this task?" - From VideoHelp Forum
Trimming unwanted commercials from a recorded broadcast or splitting a large .ts recording into distinct clips should be a straightforward task. However, standard video editors often force a full re-encode, which degrades image clarity, wastes CPU time, and can desynchronize the audio stream.
If your goal is to trim TS files while preserving original bit-for-bit quality at maximum speed, you need a dedicated stream cutter that bypasses unnecessary rendering.
- Part 1. What is a TS File & Why Cut It Losslessly?
- Part 2. How to Cut TS Files Losslessly (Step-by-Step)
- Part 3. Comparison: Lossless High-Speed Mode vs. Re-encoding
- Part 4. Pro Tip: Cut TS Files Using FFmpeg (Free CLI)
- Part 5. Frequently Asked Questions
1. How Much Do You Know about TS?
TS (Transport Steam), also known as MPEG2-TS, is a H.264 AVCHD MPEG2 video file. It is mainly used in real-time broadcasting systems and is very popular on the Internet as a record in HDTV broadcasting. In this format, any part of the video stream can be decoded independently. And it seems that HD content can be played everywhere.
In detail, it is a video file used with various HD video formats, the most famous of which are HD PVR and AVCHD Camcorders from Hauppauge, including SONY, PANASONIC and CANON. Typically, a list of .ts files will be shown if you transfer from a digital video camera to a computer, but this type of file may be hard to edit and is not compatible with many mainstream video editors. In such situation, you have to convert TS video to a more compatible video format.
2. How to Cut TS Files Losslessly - Joyoshare Media Cutter
Joyoshare Media Cutter is a tool that is fully compatible with TS files and outputs videos in original quality. It provides a dual solution for different users. You can trim any video with zero quality degradation or decode the file for post-editing, like cropping, watermarking, subtitling, rotating, enhancing effects and more. It's worth noting that in addition to TS, it also serves other mainstream multimedia files, such as MPEG, MP4, VOB, FLV, MKV, etc.
Key Features of Joyoshare Media Cutter:
- Quickly cut MTS/M2TS/TS at 60X speed without lowering the quality
- Decode files to customize parameters or further edit
- Support video conversion or output in matching device format
- Perfect for various versions of Windows or Mac systems
Step 1 Import TS file to Joyoshare TS Cutter
Based on your computer system, select the correct Joyoshare Media Cutter program version to download. Quickly install this TS cutter and run it on your desktop. You are free to decide whether drag and drop to add a TS file or click the Open button to import.
Step 2 Designate lossless mode
This program will complete the file loading and start playing by default. Now click on the Format button to go to the settings window. Based on the principle of quality lossless priority, you are advised to choose the high-speed mode. It allows you to efficiently complete TS video cutting. However, if you require more editing operations, you should choose the encoding mode. Remember to choose the original or the new format you want to convert.
Step 3 Cut and save TS video
Start cutting TS files in the main interface. You can play the video and cut the position where the playhead stays using 'Set Segment Start Time'/'Set Segment End Time'. It is best to combine key frames. Or directly select the clip manually, by setting the yellow slider. To be accurate to milliseconds, you can use the time adjuster to specify both start and end time points. Then simply press the Start button to export the file to the target folder and have a check later.
Video Guide: TS Cutter to Cut TS Files with Zero Loss
Part 3. Comparison: Lossless High-Speed Mode vs. Encoding Mode
To help you choose the right approach for your TS footage, here is a breakdown of how the two cutting modes differ:
| Feature / Metric | High-Speed Mode (Lossless) | Encoding Mode |
|---|---|---|
| Export Speed | Up to 60X faster (Seconds) | Standard encoding speed |
| Video & Audio Quality | 100% Bit-for-bit identical | Slight generation loss |
| Audio-Video Sync | Perfect synchronization | Depends on codec settings |
| Editing Capabilities | Cut, split, merge segments | Crop, rotate, filter, subtitle, watermark |
| Best For | Commercial removal, broadcast archiving | Social sharing, device format conversion |
Part 4. Pro Tip: Cut TS Files Losslessly Using FFmpeg (Free CLI)
If you are comfortable using the command-line interface, FFmpeg is a powerful open-source tool that cuts TS files without re-encoding using the -c copy stream-copy parameter.
FFmpeg Command Syntax:
ffmpeg -ss 00:01:30 -to 00:05:45 -i input.ts -c copy output.ts
Parameter Breakdown:
-ss 00:01:30: Sets the start cut position (1 minute 30 seconds). Placing-ssbefore-ienables fast keyframe seeking.-to 00:05:45: Sets the end cut timestamp.-c copy: Instructs FFmpeg to directly copy both audio and video streams without re-compressing.
Note: FFmpeg cuts strictly on keyframes (I-frames). If you require precise visual timeline scrubbing and millisecond preview, a GUI tool like Joyoshare VidiKit is much easier and safer to use.
Part 5. Frequently Asked Questions About TS Cutting
Q1: Can VLC cut TS video files?
Yes, VLC can record a portion of a playing TS video via its "Advanced Controls" (red Record button). However, VLC records in real-time (a 10-minute clip takes 10 minutes to record) and does not provide frame-accurate cut points.
Q2: Why does my audio become out of sync after cutting a TS file?
TS files often use Variable Frame Rates (VFR) and multiple timestamp headers (PTS/DTS). Traditional editors that force re-encoding calculate constant frame intervals, throwing audio out of sync. Using Lossless High-Speed Mode preserves the original packet timestamps, completely eliminating audio sync drift.
Q3: How do I convert TS to MP4 without losing quality?
Most modern TS streams contain H.264 video and AAC/AC3 audio. You can simply remux (re-package) the stream into an MP4 container without re-encoding using Joyoshare VidiKit's High-Speed Mode or FFmpeg (ffmpeg -i input.ts -c copy output.mp4).