web-dev-qa-db-ja.com

Windows Media Playerストリーミングは、テレビですべてのビデオファイルを開くわけではありませんか?

PCからSamsungSmartTVにビデオをストリーミングします。しかし、すべてのビデオがサポートされているわけではないようです。

私はmp4である2つのビデオファイルを持っています:

  • 最初に私はそれをうまくストリーミングしてビデオを見ることができます、
  • 2つ目は、デバイスがファイルを開いて後でもう一度確認することができないことを示しています。

奇妙な部分は、これら2つのファイルが同じコンバーターを使用して変換され、期間のみを除いて違いがないことです。

各ビデオのビデオ仕様は次のとおりです。 Video-1は開きますが、video-2は開きません。


ビデオ1

General
Complete name                            : C:\Users\video-1.mp4
Format                                   : MPEG-4
Format profile                           : Base Media
Codec ID                                 : isom
File size                                : 656 MiB
Duration                                 : 43mn 36s
Overall bit rate mode                    : Variable
Overall bit rate                         : 2 105 Kbps
Writing application                      : Lavf55.42.100
Xtra                                     : WM/MediaClassSecondaryID

Video
ID                                       : 1
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format profile                           : [email protected]
Format settings, CABAC                   : Yes
Format settings, ReFrames                : 2 frames
Codec ID                                 : avc1
Codec ID/Info                            : Advanced Video Coding
Duration                                 : 43mn 36s
Bit rate mode                            : Variable
Bit rate                                 : 1 906 Kbps
Maximum bit rate                         : 2 300 Kbps
Width                                    : 1 280 pixels
Height                                   : 720 pixels
Display aspect ratio                     : 16:9
Frame rate mode                          : Constant
Frame rate                               : 25.000 fps
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Progressive
Bits/(Pixel*Frame)                       : 0.083
Stream size                              : 595 MiB (91%)
Language                                 : English

Audio
ID                                       : 2
Format                                   : AAC
Format/Info                              : Advanced Audio Codec
Format profile                           : LC
Codec ID                                 : 40
Duration                                 : 43mn 36s
Bit rate mode                            : Constant
Bit rate                                 : 192 Kbps
Channel(s)                               : 2 channels
Channel positions                        : Front: L R
Sampling rate                            : 48.0 KHz
Compression mode                         : Lossy
Stream size                              : 59.9 MiB (9%)
Language                                 : English

ビデオ2

General
Complete name                            : C:\Users\GEORGE\Desktop\video-2.mp4
Format                                   : MPEG-4
Format profile                           : Base Media
Codec ID                                 : isom
File size                                : 766 MiB
Duration                                 : 50mn 15s
Overall bit rate mode                    : Variable
Overall bit rate                         : 2 132 Kbps
Writing application                      : Lavf55.42.100
Xtra                                     : WM/MediaClassPrimaryID

Video
ID                                       : 1
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format profile                           : [email protected]
Format settings, CABAC                   : Yes
Format settings, ReFrames                : 2 frames
Codec ID                                 : avc1
Codec ID/Info                            : Advanced Video Coding
Duration                                 : 50mn 15s
Bit rate mode                            : Variable
Bit rate                                 : 1 934 Kbps
Maximum bit rate                         : 2 300 Kbps
Width                                    : 1 280 pixels
Height                                   : 720 pixels
Display aspect ratio                     : 16:9
Frame rate mode                          : Constant
Frame rate                               : 25.000 fps
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Progressive
Bits/(Pixel*Frame)                       : 0.084
Stream size                              : 695 MiB (91%)
Language                                 : English

Audio
ID                                       : 2
Format                                   : AAC
Format/Info                              : Advanced Audio Codec
Format profile                           : LC
Codec ID                                 : 40
Duration                                 : 50mn 15s
Bit rate mode                            : Constant
Bit rate                                 : 192 Kbps
Channel(s)                               : 2 channels
Channel positions                        : Front: L R
Sampling rate                            : 48.0 KHz
Compression mode                         : Lossy
Stream size                              : 69.0 MiB (9%)
Language                                 : English

ビデオ2を再生できないのはなぜですか?

2

MP4ビデオが破損するという問題がありました。私の場合、破損はMP4ファイルのヘッダーに*Xtra : WM/MediaClassPrimaryID*というフィールドが存在することが原因でした。このため、ビデオを再生することができませんでした。

インターネットでいくつか検索した後、私は解決策を見つけました。私はソフトウェア開発者なので、問題を修正するためにWindowsアプリケーション(Windows 7、8、および10用)を実装しました。

あなたの場合、私はそれを見ることができます:

  • video1にはXtra : WM/MediaClassSecondaryIDが含まれており、機能しています
  • video2にはXtra : WM/MediaClassPrimaryIDが含まれていますが、機能していません

あなたの場合も、Xtra : WM/MediaClassPrimaryIDの存在によってビデオが破損していると思います。

Xtra : WM/MediaClassPrimaryIDフィールドを削除できるフリーウェア(制限なし)として、アプリケーションをインターネット上で利用できるようにしました。あなたはそれを試してみたいかもしれません、私はそれがあなたのビデオを回復するのに役立つことを願っています。

ここにあります: http://auroraborealissoftware.jimdo.com/english/

3
OlivierGrenoble