FAQ  •  Register  •  Login

PS3 and Sony Bravia 2010 TV does not recognize WTV files

<<

mjchoi00

Serviio newbie

Posts: 3

Joined: Tue Apr 16, 2013 8:09 am

Post Tue Apr 16, 2013 8:13 am

PS3 and Sony Bravia 2010 TV does not recognize WTV files

PS3 sees no files that are WTV files, but sees MP4s

Here is the ffmpeg -i file.

C:\Program Files\Serviio\lib>ffmpeg.exe -i "M:\Recorded TV\Curious George_KPBSDT_2012_11_08_07_58_00.wtv"
ffmpeg version 1.1.1 Copyright (c) 2000-2013 the FFmpeg developers
built on Feb 5 2013 21:59:54 with gcc 4.7.2 (GCC)
configuration: --enable-static --disable-shared --disable-ffplay --disable-ffs
erver --enable-memalign-hack --enable-libmp3lame --enable-libass --enable-librtm
p --enable-fontconfig --enable-libfreetype --enable-zlib --extra-libs='-lrtmp -l
polarssl -lws2_32 -lwinmm -lexpat -lfreetype -lfribidi -lz' --arch=x86 --enable-
runtime-cpudetect --enable-pthreads --target-os=mingw32 --cross-prefix=i686-w64-
mingw32- --pkg-config=pkg-config
libavutil 52. 13.100 / 52. 13.100
libavcodec 54. 86.100 / 54. 86.100
libavformat 54. 59.106 / 54. 59.106
libavdevice 54. 3.102 / 54. 3.102
libavfilter 3. 32.100 / 3. 32.100
libswscale 2. 1.103 / 2. 1.103
libswresample 0. 17.102 / 0. 17.102
[mpeg2video @ 0161DAE0] 0x0 is invalid
Last message repeated 1 times
Input #0, wtv, from 'M:\Recorded TV\Curious George_KPBSDT_2012_11_08_07_58_00.wtv':
Metadata:
WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74
WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000
Title : Curious George
WM/SubTitle : Robot Monkey Hullabalo; Curious George and the Slithery Day
WM/SubTitleDescription: George decides to make himself into a robot to play with Hundley; Bruno the snake escapes from his cage.
genre : Kids;General;Educational;Series;Family/Children;Children
WM/OriginalReleaseTime: 0
WM/MediaCredits : Frank Welker;;;
service_provider: KPBSDT
service_name : KPBSDT (KPBS-DT)
WM/MediaNetworkAffiliation: PBS Affiliate
WM/MediaOriginalChannel: 15
WM/MediaOriginalChannelSubNumber: 1
WM/MediaOriginalBroadcastDateTime: 2008-01-24T08:00:00Z
WM/MediaOriginalRunTime: 20923509998
WM/MediaIsStereo: true
WM/MediaIsRepeat: true
WM/MediaIsLive : false
WM/MediaIsTape : false
WM/MediaIsDelay : false
WM/MediaIsSubtitled: false
WM/MediaIsMovie : false
WM/MediaIsPremiere: false
WM/MediaIsFinale: false
WM/MediaIsSAP : false
WM/MediaIsSport : false
WM/ParentalRating: TV-Y
WM/Provider : MediaCenterDefault
WM/VideoClosedCaptioning: true
WM/WMRVEncodeTime: 2012-11-08 15:58:07
WM/WMRVSeriesUID: !MCSeries!166032377
WM/WMRVServiceID: !MCService!28456176
WM/WMRVProgramID: !MCProgram!183397383
WM/WMRVRequestID: 0
WM/WMRVScheduleItemID: 0
WM/WMRVQuality : 3
WM/WMRVOriginalSoftPrePadding: 420
WM/WMRVOriginalSoftPostPadding: 180
WM/WMRVHardPrePadding: -300
WM/WMRVHardPostPadding: 0
WM/WMRVATSCContent: true
WM/WMRVDTVContent: true
WM/WMRVHDContent: false
Duration : 20928747056
WM/WMRVEndTime : 2012-11-08 16:33:00
WM/WMRVBitrate : 15.451514
WM/WMRVKeepUntil: -1
WM/WMRVActualSoftPrePadding: 412
WM/WMRVActualSoftPostPadding: 180
WM/WMRVContentProtected: false
WM/WMRVContentProtectedPercent: 0
WM/WMRVExpirationSpan: 9223372036854775807
WM/WMRVInBandRatingSystem: 255
WM/WMRVInBandRatingLevel: 255
WM/WMRVInBandRatingAttributes: 0
WM/WMRVWatched : false
WM/MediaThumbType: 3
Duration: 00:34:51.56, start: 2.154667, bitrate: 15461 kb/s
Stream #0:0[0x11]: Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s
Stream #0:1[0x12]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 10000k tbn, 59.94 tbc
Stream #0:2[0x13]: Subtitle: eia_608
Stream #0:3[0x0]: Attachment: mjpeg
Metadata:
title : TV Thumbnail
At least one output file must be specified

Have profiles.xml open and it has the transcoding for wtv.

Thank you for the help.

Michael
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Apr 16, 2013 11:54 am

Re: PS3 and Sony Bravia 2010 TV does not recognize WTV files

On PS3 profile, WTV are only remuxed, not transcoded...

On your ffmpeg output I saw :
[mpeg2video @ 0161DAE0] 0x0 is invalid

So you probably have to force mpeg2video transcoding...

Add this custom profile on profiles.xml just before the last </Profiles> element:

  Code:
   <Profile id="PS3wtv" name="Playstation 3 - WTV record" extendsProfileId="4">
      <Transcoding>
         <!-- Transcode all recorded WTV -->
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" forceVTranscoding="true" targetACodec="ac3" aBitrate="384">
            <Matches container="wtv" />
         </Video>
      </Transcoding>   
   </Profile>


And select it on serviio console.
Illico
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
<<

mjchoi00

Serviio newbie

Posts: 3

Joined: Tue Apr 16, 2013 8:09 am

Post Tue Apr 16, 2013 3:54 pm

Re: PS3 and Sony Bravia 2010 TV does not recognize WTV files

Thank you for your help.

I added those lines and restarted the server and selected the new Profile.

Still can't see the WTV files on PS3.

I redid the ffmpeg -i and it came with the same error.

C:\Program Files\Serviio\lib>ffmpeg.exe -i "M:\Recorded TV\Curious George_KPBSDT
_2012_11_08_07_58_00.wtv"
ffmpeg version 1.1.1 Copyright (c) 2000-2013 the FFmpeg developers
built on Feb 5 2013 21:59:54 with gcc 4.7.2 (GCC)
configuration: --enable-static --disable-shared --disable-ffplay --disable-ffs
erver --enable-memalign-hack --enable-libmp3lame --enable-libass --enable-librtm
p --enable-fontconfig --enable-libfreetype --enable-zlib --extra-libs='-lrtmp -l
polarssl -lws2_32 -lwinmm -lexpat -lfreetype -lfribidi -lz' --arch=x86 --enable-
runtime-cpudetect --enable-pthreads --target-os=mingw32 --cross-prefix=i686-w64-
mingw32- --pkg-config=pkg-config
libavutil 52. 13.100 / 52. 13.100
libavcodec 54. 86.100 / 54. 86.100
libavformat 54. 59.106 / 54. 59.106
libavdevice 54. 3.102 / 54. 3.102
libavfilter 3. 32.100 / 3. 32.100
libswscale 2. 1.103 / 2. 1.103
libswresample 0. 17.102 / 0. 17.102
[mpeg2video @ 0030DA20] 0x0 is invalid
Last message repeated 1 times
Input #0, wtv, from 'M:\Recorded TV\Curious George_KPBSDT_2012_11_08_07_58_00.wt
v':
Metadata:
WM/MediaClassPrimaryID: db9830bd-3ab3-4fab-8a371a995f7ff74
WM/MediaClassSecondaryID: ba7f258a-62f7-47a9-b21f4651c42a000
Title : Curious George
WM/SubTitle : Robot Monkey Hullabalo; Curious George and the Slithery Da
y
WM/SubTitleDescription: George decides to make himself into a robot to play
with Hundley; Bruno the snake escapes from his cage.
genre : Kids;General;Educational;Series;Family/Children;Children
WM/OriginalReleaseTime: 0
WM/MediaCredits : Frank Welker;;;
service_provider: KPBSDT
service_name : KPBSDT (KPBS-DT)
WM/MediaNetworkAffiliation: PBS Affiliate
WM/MediaOriginalChannel: 15
WM/MediaOriginalChannelSubNumber: 1
WM/MediaOriginalBroadcastDateTime: 2008-01-24T08:00:00Z
WM/MediaOriginalRunTime: 20923509998
WM/MediaIsStereo: true
WM/MediaIsRepeat: true
WM/MediaIsLive : false
WM/MediaIsTape : false
WM/MediaIsDelay : false
WM/MediaIsSubtitled: false
WM/MediaIsMovie : false
WM/MediaIsPremiere: false
WM/MediaIsFinale: false
WM/MediaIsSAP : false
WM/MediaIsSport : false
WM/ParentalRating: TV-Y
WM/Provider : MediaCenterDefault
WM/VideoClosedCaptioning: true
WM/WMRVEncodeTime: 2012-11-08 15:58:07
WM/WMRVSeriesUID: !MCSeries!166032377
WM/WMRVServiceID: !MCService!28456176
WM/WMRVProgramID: !MCProgram!183397383
WM/WMRVRequestID: 0
WM/WMRVScheduleItemID: 0
WM/WMRVQuality : 3
WM/WMRVOriginalSoftPrePadding: 420
WM/WMRVOriginalSoftPostPadding: 180
WM/WMRVHardPrePadding: -300
WM/WMRVHardPostPadding: 0
WM/WMRVATSCContent: true
WM/WMRVDTVContent: true
WM/WMRVHDContent: false
Duration : 20928747056
WM/WMRVEndTime : 2012-11-08 16:33:00
WM/WMRVBitrate : 15.451514
WM/WMRVKeepUntil: -1
WM/WMRVActualSoftPrePadding: 412
WM/WMRVActualSoftPostPadding: 180
WM/WMRVContentProtected: false
WM/WMRVContentProtectedPercent: 0
WM/WMRVExpirationSpan: 9223372036854775807
WM/WMRVInBandRatingSystem: 255
WM/WMRVInBandRatingLevel: 255
WM/WMRVInBandRatingAttributes: 0
WM/WMRVWatched : false
WM/MediaThumbType: 3
Duration: 00:34:51.56, start: 2.154667, bitrate: 15461 kb/s
Stream #0:0[0x11]: Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s
Stream #0:1[0x12]: Video: mpeg2video (Main), yuv420p, 1920x1080 [SAR 1:1 DAR
16:9], 29.97 fps, 29.97 tbr, 10000k tbn, 59.94 tbc
Stream #0:2[0x13]: Subtitle: eia_608
Stream #0:3[0x0]: Attachment: mjpeg
Metadata:
title : TV Thumbnail
At least one output file must be specified

Not certain I'm doing something wrong.

Thank you again for your help.

Michael
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Apr 16, 2013 3:58 pm

Re: PS3 and Sony Bravia 2010 TV does not recognize WTV files

mjchoi00 wrote:I added those lines and restarted the server and selected the new Profile.

After a profiles.xml edition, you have to restart serviio services (or reboot), restart server does not reload profiles.xml...then select the new profile "Playstation 3 - WTV record"
Illico
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
<<

mjchoi00

Serviio newbie

Posts: 3

Joined: Tue Apr 16, 2013 8:09 am

Post Tue Apr 16, 2013 4:10 pm

Re: PS3 and Sony Bravia 2010 TV does not recognize WTV files

I did reboot and selected Playstation 3 - WTV record - still can't see WTV files.

Sorry I wasn't more clear. I not good with the programming languages and probably are saying things inaccurately.

You mentioned before that this is muxing and not transcoding. Why am I adding lines that include/forcing transcoding?

Thank you so much for your help. I appreciate the time you have given me.

Michael

Return to Sony

Who is online

Users browsing this forum: No registered users and 6 guests

Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by ST Software for PTF.