Convert TS to WMV

Drag and drop files here or click to select.
Max file size 100mb.
Uploading progress:

TS vs WMV Format Comparison

Aspect TS (Source Format) WMV (Target Format)
Format Overview
TS
MPEG Transport Stream

A streaming-oriented container designed for broadcast television and live transmission where data loss is expected. Transport Stream uses fixed-length 188-byte packets with error correction for resilience. TS supports multiplexing multiple programs and is the foundation of HLS streaming, DVB/ATSC broadcast, and Blu-ray disc storage (M2TS).

Standard Lossy
WMV
Windows Media Video

Microsoft's proprietary video codec and container format, developed as part of the Windows Media framework. WMV files use the Advanced Systems Format (ASF) container with Windows Media Video 9 (VC-1) or earlier codecs and WMA audio. Once dominant for Windows-based media and DRM-protected content, WMV has been largely replaced by H.264/MP4 for most purposes.

Legacy Lossy
Technical Specifications
Container: MPEG-2 Transport Stream (ISO/IEC 13818-1)
Video Codecs: MPEG-2, H.264/AVC, H.265/HEVC
Audio Codecs: MPEG-1 Layer II (MP2), AAC, AC-3, DTS
Max Resolution: Up to 8K (H.265 in ATSC 3.0)
Extensions: .ts, .mts, .m2ts, .tsv
Container: Advanced Systems Format (ASF)
Video Codecs: WMV7 (WMV1), WMV8 (WMV2), WMV9/VC-1 (WMV3)
Audio Codecs: WMA Standard, WMA Pro, WMA Lossless
Max Resolution: Up to 1920×1080 (WMV9/VC-1)
Extensions: .wmv, .asf
Video Features
  • Subtitles: DVB subtitles, teletext, closed captions
  • Chapters: Not native (segment-based navigation)
  • Multi-Audio: Multiple audio PIDs per program
  • HDR: HDR10, HLG (ATSC 3.0, DVB)
  • EPG: Electronic Program Guide metadata
  • Error Recovery: Forward error correction for broadcast reliability
  • Subtitles: SAMI (Synchronized Accessible Media Interchange)
  • Chapters: Not supported
  • Multi-Audio: Single audio track typical
  • HDR: Not supported
  • DRM: Windows Media DRM (strong protection, deprecated)
  • Streaming: Windows Media Services, MMS/RTSP protocol
Processing & Tools

TS encoding and broadcast with FFmpeg:

# Encode to MPEG Transport Stream
ffmpeg -i input.mp4 -c:v libx264 -c:a aac \
  -f mpegts output.ts

# Blu-ray compatible M2TS
ffmpeg -i input.mp4 -c:v libx264 -level 4.1 \
  -c:a ac3 -f mpegts output.m2ts

WMV encoding for Windows with FFmpeg:

# Convert TS to WMV
ffmpeg -i input.ts -c:v wmv2 -b:v 2M \
  -c:a wmav2 -b:a 192k output.wmv

# Higher quality WMV encoding
ffmpeg -i input.ts -c:v msmpeg4v3 -b:v 4M \
  -c:a wmav2 -b:a 256k output.wmv
Advantages
  • Error-resilient packet structure for broadcast
  • Foundation of HLS adaptive bitrate streaming
  • Multiple program multiplexing in single stream
  • Blu-ray disc storage format (M2TS)
  • Supports modern codecs (H.264, H.265)
  • Industry standard for broadcast and IPTV
  • Native Windows Media Player integration
  • Windows Media DRM for content protection
  • Good compression efficiency for its era (VC-1)
  • Streaming via Windows Media Services
  • Universal Windows desktop support
  • Low system requirements for playback
Disadvantages
  • Packet overhead increases file size (188-byte packets)
  • Not ideal for local file storage (use MP4/MKV)
  • Complex structure for simple file playback
  • Limited desktop player support compared to MP4
  • No native chapter or attachment support
  • Proprietary Microsoft format
  • Poor cross-platform support (macOS, Linux limited)
  • No modern codec support (H.264, VP9, AV1)
  • Limited to 1080p maximum resolution
  • No subtitle, chapter, or multi-track features
  • Deprecated DRM system (no longer maintained)
  • Not suitable for web or mobile delivery
Common Uses
  • Broadcast television (DVB, ATSC, ISDB)
  • HLS streaming segments
  • Blu-ray disc storage (M2TS)
  • IPTV and cable television delivery
  • Digital video recorder (DVR) output
  • Live streaming infrastructure
  • Legacy Windows media libraries
  • Older enterprise training and presentation videos
  • Windows Media DRM protected content
  • PowerPoint embedded video (legacy)
  • Legacy web streaming (Windows Media Services)
  • Corporate intranet video archives
Best For
  • Broadcast television and IPTV delivery
  • HLS adaptive bitrate streaming
  • Blu-ray disc authoring (M2TS)
  • Live event streaming with error recovery
  • Multi-program broadcast multiplexing
  • Legacy Windows desktop playback
  • Compatibility with older Windows systems
  • Enterprise systems requiring Windows Media DRM
  • Archival access to WMV content collections
Version History
Introduced: 1995 (ISO/IEC 13818-1, MPEG-2 Systems)
Current Version: MPEG-2 Systems Amendment 4 (2018)
Status: Active standard for broadcast, Blu-ray, and HLS
Evolution: MPEG-2 TS (1995) → DVB/ATSC (1998) → Blu-ray/M2TS (2006) → HLS segments (2009) → ATSC 3.0 (2019)
Introduced: 1999 (Microsoft, Windows Media Player 7)
Current Version: WMV9/VC-1 (SMPTE 421M, 2006)
Status: Legacy, no longer actively developed
Evolution: WMV7 (1999) → WMV8 (2001) → WMV9/VC-1 (2003) → SMPTE standard (2006) → Superseded by H.264
Software Support
Media Players: VLC, mpv, PotPlayer, Kodi
Web Browsers: Via HLS.js (as HLS segments)
Video Editors: Adobe Premiere Pro, DaVinci Resolve, Kdenlive
Mobile: Android/iOS (via HLS streaming players)
CLI Tools: FFmpeg, tstools, DVBInspector, MediaInfo
Media Players: Windows Media Player, VLC, PotPlayer, KMPlayer
Web Browsers: Not supported (except legacy IE with plugin)
Video Editors: Windows Movie Maker (legacy), Adobe Premiere Pro
Mobile: Android (MX Player, VLC), iOS (VLC)
CLI Tools: FFmpeg, Windows Media Encoder (legacy), HandBrake

Why Convert TS to WMV?

Converting TS to WMV addresses specific legacy Windows ecosystem requirements that still exist in enterprise and educational environments. While WMV is a deprecated format for modern use, many organizations maintain Windows-based infrastructure where WMV files are the expected standard. Corporate training systems built on Windows Media Services, older PowerPoint presentations requiring embedded video, and enterprise content management systems with WMV-only import capabilities still drive demand for this conversion.

The most common scenario involves organizations that recorded broadcast training content or internal TV feeds as MPEG Transport Streams and need to integrate them into existing Windows-based content delivery systems. These systems may use Windows Media DRM for access control, require WMV format for their media asset management databases, or feed content through Windows Media Services streaming infrastructure that predates HTTP-based streaming.

WMV also remains relevant for older PowerPoint presentations. Before Microsoft added broad MP4 support, PowerPoint relied on WMV for embedded video. Organizations with large libraries of presentation templates containing WMV video, or training departments that create new PowerPoint content for older Office versions, may need to convert broadcast captures to WMV for reliable embedding and playback across their Office deployment.

For any new project or workflow, MP4 is strongly preferred over WMV. WMV's limitations are significant: maximum 1080p resolution, single audio track, no modern codec support, poor cross-platform compatibility, and deprecated DRM. Convert to WMV only when specific legacy Windows system compatibility is required. For all other uses — web, mobile, modern Windows, cross-platform — use MP4 with H.264.

Key Benefits of Converting TS to WMV:

  • Windows Native: Plays in Windows Media Player without additional codecs
  • Enterprise Ready: Compatible with Windows Media Services infrastructure
  • PowerPoint: Embeds reliably in older Microsoft Office versions
  • DRM Support: Windows Media DRM for controlled content distribution
  • Low Requirements: Plays on older Windows systems with minimal resources
  • Legacy CMS: Compatible with Windows-based content management systems
  • Compact Files: Good compression at moderate bitrates

Practical Examples

Example 1: Corporate Training from IPTV

Scenario: A large corporation recorded internal training broadcasts via IPTV as TS files and needs to upload them to their Windows Media Services-based learning management system that only accepts WMV files.

Source: training_compliance_2026q1.ts (2.4 GB, 1280x720, H.264, AAC)
Conversion: TS → WMV (for Windows LMS)
Result: training_compliance_2026q1.wmv (1.1 GB, 1280x720, WMV2, WMA)

Enterprise deployment:
1. Re-encode H.264 to WMV2 at 2 Mbps
2. Convert AAC audio to WMA at 192 kbps
3. Apply Windows Media DRM for access control
4. Upload to Windows Media Services LMS
5. Distribute to employees via intranet portal
✓ LMS accepts and catalogs WMV natively
✓ DRM restricts viewing to authorized employees
✓ Streams reliably over corporate intranet
✓ Compatible with all Windows desktop versions

Example 2: PowerPoint Presentation Videos

Scenario: A sales team needs to embed product demo clips from recorded broadcast presentations (TS format) into PowerPoint 2016 presentations for client meetings.

Source: product_demo_broadcast.ts (1.6 GB, 1920x1080, MPEG-2, MP2)
Conversion: TS → WMV (for PowerPoint embedding)
Result: product_demo_clips/ (5 clips, 20-60 MB each, 720p, WMV)

PowerPoint workflow:
1. Extract 5 key demo segments from TS recording
2. Downscale to 720p for presentation display
3. Encode WMV2 at 1.5 Mbps (PPT-friendly size)
4. Audio to WMA at 128 kbps
5. Embed in PowerPoint slides via Insert > Video
✓ Videos play inline on PowerPoint slides
✓ Compatible with PowerPoint 2010, 2013, 2016
✓ Reasonable file size for email attachment
✓ No codec installation required on presentation laptop

Example 3: Legacy Intranet Archive

Scenario: A government agency archives recorded legislative broadcast sessions from TS capture to their intranet video library, which runs on a legacy Windows Server with Windows Media Services.

Source: legislative_session_20260317.ts (6.8 GB, 720x576i, MPEG-2, MP2)
Conversion: TS → WMV (for intranet archive)
Result: legislative_session_20260317.wmv (1.8 GB, 720x576, WMV2, WMA)

Archival process:
1. Deinterlace 576i PAL broadcast content
2. Encode WMV2 at 3 Mbps for archive quality
3. Convert audio to WMA Pro at 256 kbps
4. Add metadata (date, session ID, committee)
5. Publish to Windows Media Services library
✓ Searchable in agency intranet media catalog
✓ Streams to staff desktops via Windows Media Player
✓ 73% size reduction from original TS recording
✓ Compatible with agency standard Windows 10 desktops

Frequently Asked Questions (FAQ)

Q: Is WMV still a good format choice in 2026?

A: No, not for new projects. WMV is a legacy format with poor cross-platform support, no modern codec options, and deprecated DRM. Use MP4 with H.264 for virtually all modern use cases. Only convert to WMV when you must integrate with existing Windows Media Services infrastructure, legacy enterprise systems, or older PowerPoint versions that require WMV.

Q: Will WMV play on Mac or Linux?

A: VLC plays WMV files on macOS and Linux. However, native system players (QuickTime on macOS) do not support WMV without additional codecs. WMV is primarily a Windows format. If cross-platform playback is needed, convert to MP4 instead.

Q: What is the maximum resolution WMV supports?

A: WMV9/VC-1 supports up to 1920×1080 (Full HD). There is no 4K or 8K support. If your TS source is 4K, converting to WMV requires downscaling to 1080p or lower. For high-resolution content, use MP4 or MKV instead.

Q: Can I add DRM to the WMV output?

A: Windows Media DRM requires the Windows Media Rights Manager SDK, which Microsoft has deprecated. While existing WM-DRM protected content still works on Windows, creating new DRM-protected WMV files is increasingly unsupported. For modern content protection, use Widevine or PlayReady DRM with MP4 content.

Q: Why does the WMV file look lower quality than the TS source?

A: WMV codecs (WMV2, WMV3) are less compression-efficient than H.264 or H.265. At the same bitrate, WMV produces lower quality than H.264. To match the visual quality of the TS source, you may need to increase the WMV bitrate by 30-50%. Alternatively, accept slightly lower quality as the trade-off for legacy Windows compatibility.

Q: Can I preserve multiple audio tracks?

A: WMV typically supports only a single audio track. If your TS broadcast has multiple language tracks, you must select one during conversion. Use FFmpeg's -map 0:a:0 to choose the primary audio stream. For multi-track support, use MKV instead of WMV.

Q: How does WMV compare to MP4 for file size?

A: At equivalent visual quality, WMV files are typically 20-40% larger than H.264 MP4 files. This is because WMV codecs are less efficient than modern H.264. For a 1 GB H.264 TS source, the WMV output at similar quality would be 1.2-1.4 GB, while an MP4 conversion would be closer to 0.9-1.0 GB.

Q: Can I embed WMV in modern PowerPoint (365/2021)?

A: Modern PowerPoint (2019, 2021, 365) supports both WMV and MP4. Since MP4 is better supported across platforms (including PowerPoint for Mac), use MP4 for new presentations. WMV embedding is primarily needed for PowerPoint 2010-2016 compatibility or when updating legacy presentations that already use WMV video.