Page 1 of 2

Playing movies - Panasonic camera .mov JPEG files

PostPosted: Sun Nov 27, 2011 2:43 am
by bugalugs
Cannot playback these files I assume the transcoding is not setup correctly, just looking for some ideas on how I will get this working on a D series Samsung :?:

  Code:
General
Complete name                    : C:\photos\movie\P1020399.MOV
Format                           : QuickTime
Format/Info                      : Original Apple specifications
File size                        : 121 MiB
Duration                         : 1mn 16s
Overall bit rate                 : 13.3 Mbps
Encoded date                     : UTC 2010-08-03 03:39:32
Tagged date                      : UTC 2010-08-03 03:39:32
Writing library                  : pana

Video
ID                               : 1
Format                           : JPEG
Codec ID                         : jpeg
Duration                         : 1mn 16s
Bit rate mode                    : Variable
Bit rate                         : 13.2 Mbps
Width                            : 848 pixels
Height                           : 480 pixels
Display aspect ratio             : 16:9
Frame rate mode                  : Constant
Frame rate                       : 30.000 fps
Compression mode                 : Lossy
Bits/(Pixel*Frame)               : 1.083
Stream size                      : 121 MiB (100%)
Language                         : English
Encoded date                     : UTC 2010-08-03 03:39:32
Tagged date                      : UTC 2010-08-03 03:39:32

Audio
ID                               : 2
Format                           : PCM
Format settings, Endianness      : Little
Format settings, Sign            : Unsigned
Codec ID                         : raw
Duration                         : 1mn 16s
Bit rate mode                    : Constant
Bit rate                         : 64.0 Kbps
Channel(s)                       : 1 channel
Sampling rate                    : 8 000 Hz
Bit depth                        : 8 bits
Stream size                      : 598 KiB (0%)
Language                         : English
Encoded date                     : UTC 2010-08-03 03:39:32
Tagged date                      : UTC 2010-08-03 03:39:32

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Sun Nov 27, 2011 7:59 am
by Cerberus
add this to profile.xml file under the samsung c/d profile :)

<Matches container="mp4" vCodec="mjpeg" />

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Mon Nov 28, 2011 2:04 am
by bugalugs
Thanks! sounds too easy will give it a go shortly...

I assume this would be fairly CPU intensive? Do you know if a Atom processor equipped netbook would be able to handle this?

If not is there anything else I can try to reduce CPU usage?

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Mon Nov 28, 2011 7:15 am
by Cerberus
yer not a problem we have users running on NAS devices with no issues. :)

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Tue Nov 29, 2011 9:03 am
by bugalugs
hang on somethings gone wrong....

this appears in the log, any ideas?

  Code:
011-11-29 19:27:20,314 WARN  [VideoDeliveryEngine] Cannot get media info for transcoded file P1020417.MOV: MPEG2TS video file P1020417.MOV does not match any supported DLNA profile


  Code:
C:\photos\movie>\ffmpeg -i P1020616.MOV
ffmpeg version N-31480-g8bc3a48, Copyright (c) 2000-2011 the FFmpeg developers
  built on Jul 14 2011 23:37:53 with gcc 4.4.2
  configuration: --enable-static --disable-shared --disable-ffplay --disable-ffserver --enable-memali
gn-hack --enable-libmp3lame --enable-librtmp --extra-libs='-lrtmp -lpolarssl -lws2_32 -lwinmm' --arch
=x86 --enable-runtime-cpudetect --enable-pthreads --target-os=mingw32 --cross-prefix=i686-mingw32- --
pkg-config=pkg-config
  libavutil    51. 11. 0 / 51. 11. 0
  libavcodec   53.  8. 0 / 53.  8. 0
  libavformat  53.  6. 0 / 53.  6. 0
  libavdevice  53.  2. 0 / 53.  2. 0
  libavfilter   2. 25. 0 /  2. 25. 0
  libswscale    2.  0. 0 /  2.  0. 0
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'P1020616.MOV':
  Metadata:
    creation_time   : 2010-08-08 18:55:31
  Duration: 00:00:38.50, start: 0.000000, bitrate: 13380 kb/s
    Stream #0.0(eng): Video: mjpeg, yuvj420p, 848x480, 13315 kb/s, 30 fps, 30 tbr, 30 tbn, 30 tbc
    Metadata:
      creation_time   : 2010-08-08 18:55:31
    Stream #0.1(eng): Audio: pcm_u8, 8000 Hz, 1 channels, u8, 64 kb/s
    Metadata:
      creation_time   : 2010-08-08 18:55:31
At least one output file must be specified


and heres my profile

<Video targetContainer="mpegts">
<Matches container="mp4" vCodec="mjpeg" />
</Video>

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Tue Nov 29, 2011 11:15 am
by Cerberus
ah bugger looks like an unsupported audio codec, so guess this is a thread fro ZIp to take a look at

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Tue Nov 29, 2011 1:05 pm
by bugalugs
you mean pcm_u8? The TV supports LPCM and ADPCM so im surprised it cant do it...

cant I just transcode the audio to mp3 or ac3.... or how about playback with no sound only video....?

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Tue Nov 29, 2011 2:36 pm
by Illico
bugalugs wrote:you mean pcm_u8? The TV supports LPCM and ADPCM so im surprised it cant do it...
cant I just transcode the audio to mp3 or ac3.... or how about playback with no sound only video....?


No, you didn't edited at the proper <video> section
<Video targetContainer="mpegts">
<Matches container="mp4" vCodec="mjpeg" />
</Video>

In fact with the previous settings, serviio try to remux the mp4 into mpegts with video codec copy (mjpeg).
But MPEGTS with MJEG video is not DLNA compliant and not supported by serviio.

The solution is to transcode the MJEG to MPEG2VIDEO, like this:
Edit the 3th <video> section of the Samsung profile:
  Code:
         <Video targetContainer="mpegts" targetACodec="ac3" targetVCodec="mpeg2video">
            <Matches container="matroska" vCodec="mpeg2video" />
            <Matches container="avi" vCodec="h264" />
            <Matches container="avi" vCodec="mjpeg" />
            <Matches container="avi" vCodec="dvvideo" />
            <Matches container="flv" />
            <Matches container="ogg" />
            <Matches container="mp4" vCodec="mjpeg" />
         </Video>

Audio will be transcoded too.

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 12:52 am
by bugalugs
ok just so I understand this wouldn't it be better to modify my existing profile like this and leave the 3rd profile unchanged.... any reason.?
  Code:
 <Video targetContainer="mpegts" targetACodec="ac3" targetVCodec="mpeg2video">
            <Matches container="mp4" vCodec="mjpeg" />
         </Video>

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 7:25 am
by Cerberus
because serviio doesnt like it so need to be done as illico stated. :)

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 8:16 am
by Illico
bugalugs wrote:ok just so I understand this wouldn't it be better to modify my existing profile like this and leave the 3rd profile unchanged.... any reason.?

:arrow: This is the first "match" that will be taken into account.
So you have to place your "personnal" section in first <video> section position.
Otherwise, there were a "match" at the 2d section : <Matches container="mp4" aCodec="lpcm" />
So I made a mistake, my latest proposition will be never matched first. :?

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 9:09 am
by bugalugs
ok i am starting to understand the logic.... i think? :?

but the audio "aCodec" match is for pcm_u8 not lpcm

anyway still not working...

  Code:
2011-11-30 21:02:58,890 WARN  [VideoDeliveryEngine] Cannot get media info for transcoded file P1020395.MOV: MPEG2TS video file P1020395.MOV does not match any supported DLNA profile

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 10:12 am
by Illico
bugalugs wrote:but the audio "aCodec" match is for pcm_u8 not lpcm

For serviio, LPCM match includes following ffmpeg formats
- equal to "lpcm"
- begin with "pcm_"
- begin with "adpcm_"
so this will match "pcm_u8"

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 10:13 am
by Illico
bugalugs wrote:anyway still not working...

??
Do you restart serviio service after profile modification?
Could you post your samsung modified profile ?

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 11:46 am
by bugalugs
Now Im getting a codec unsuported error..

I have restarted service everytime. All I have done with profile is to remove <Matches container="mp4" aCodec="lpcm" /> from the 2nd profile to make sure I get a match in the 3rd profile for Samsund C/D.

Really appreciate the help with this... ;)

  Code:
2011-11-30 22:25:04,812 DEBUG [WebServer] Incoming connection from /192.168.1.2:56750
2011-11-30 22:25:04,812 DEBUG [ResourceTransportRequestHandler] HEAD /resource/1978/MEDIA_ITEM/MPEG_TS_SD_KO_ISO$0 HTTP/1.0, headers = [getcontentFeatures.dlna.org: 1,Host: 192.168.1.11:8895]]
2011-11-30 22:25:04,812 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.2
2011-11-30 22:25:04,812 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-11-30 22:25:04,812 DEBUG [ResourceTransportRequestHandler] Request for resource 1978 and type 'MEDIA_ITEM' received
2011-11-30 22:25:04,812 DEBUG [MediaResourceRetrievalStrategy] Getting information about media item 1978 (local)
2011-11-30 22:25:04,812 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-11-30 22:25:04,812 DEBUG [VideoDAOImpl] Reading a Video (id = 1978)
2011-11-30 22:25:04,812 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 1978, format MPEG_TS_SD_KO_ISO and profile Samsung TV / player (C/D-series)
2011-11-30 22:25:04,812 DEBUG [AbstractTranscodingDeliveryEngine] Getting media info for transcoded version of file P1020395.MOV
2011-11-30 22:25:04,812 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_EU_ISO
2011-11-30 22:25:04,812 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_NA_ISO
2011-11-30 22:25:04,812 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_KO_ISO
2011-11-30 22:25:04,812 DEBUG [ResourceTransportRequestHandler] Sending HEAD response back
2011-11-30 22:25:04,812 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: video/mpeg,Content-Length: 50000000000,Date: Wed, 30 Nov 2011 11:25:04 GMT,Server: Windows XP, UPnP/1.0 DLNADOC/1.50, Serviio/0.6.0.1,Cache-control: no-cache,contentFeatures.dlna.org: DLNA.ORG_PN=MPEG_TS_SD_KO_ISO;DLNA.ORG_OP=10;DLNA.ORG_CI=1;DLNA.ORG_FLAGS=01500000000000000000000000000000,transferMode.dlna.org: Streaming]]
2011-11-30 22:25:04,828 DEBUG [WebServer] Incoming connection from /192.168.1.2:44341
2011-11-30 22:25:04,828 DEBUG [ResourceTransportRequestHandler] GET /resource/1978/MEDIA_ITEM/MPEG_TS_SD_KO_ISO$0 HTTP/1.0, headers = [getcontentFeatures.dlna.org: 1,transferMode.dlna.org: Streaming,getMediaInfo.sec: 1,TimeSeekRange.dlna.org: npt=0-,Host: 192.168.1.11:8895]]
2011-11-30 22:25:04,828 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.2
2011-11-30 22:25:04,828 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-11-30 22:25:04,828 DEBUG [ResourceTransportRequestHandler] Request for resource 1978 and type 'MEDIA_ITEM' received
2011-11-30 22:25:04,828 DEBUG [MediaResourceRetrievalStrategy] Getting information about media item 1978 (local)
2011-11-30 22:25:04,828 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-11-30 22:25:04,828 DEBUG [VideoDAOImpl] Reading a Video (id = 1978)
2011-11-30 22:25:04,828 DEBUG [VideoDeliveryEngine] Delivering item '1978' for client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-11-30 22:25:04,828 DEBUG [VideoDeliveryEngine] Delivering file 'P1020395.MOV' using transcoding
2011-11-30 22:25:04,828 DEBUG [AbstractTranscodingDeliveryEngine] Stopping previous transcoding job of file 'C:\WINDOWS\TEMP\Serviio\transcoding-temp-1980-MPEG2TS.stf'
2011-11-30 22:25:04,828 DEBUG [AbstractTranscodingDeliveryEngine] Deleted temp file 'C:\WINDOWS\TEMP\Serviio\transcoding-temp-1980-MPEG2TS.stf': true
2011-11-30 22:25:04,828 DEBUG [AbstractTranscodingDeliveryEngine] No suitable transcoding job exists yet, start one for client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-11-30 22:25:04,828 DEBUG [MediaItemDAOImpl] Getting file of media item 1978
2011-11-30 22:25:04,843 DEBUG [FFMPEGWrapper] Invoking FFmpeg to transcode video file: C:\photos\movie\P1020395.MOV
2011-11-30 22:25:04,843 DEBUG [ProcessExecutor] Starting C:\Program Files\Serviio\bin\\..\lib/ffmpeg.exe -i C:\photos\movie\P1020395.MOV -y -threads 2 -vcodec mpeg2video -sameq -r 30 -g 15 -copyts -acodec ac3 -ab 64k -ar 48000 -ac 1 -map 0:0 -map 0:1 -sn -f mpegts C:\WINDOWS\TEMP\Serviio\transcoding-temp-1978-MPEG2TS.stf
2011-11-30 22:25:05,093 DEBUG [DiscoverySSDPMessageListener] Received a valid M-SEARCH message for search target urn:schemas-upnp-org:device:MediaRenderer:1 from address /192.168.1.3:61601
2011-11-30 22:25:05,093 DEBUG [DiscoverySSDPMessageListener] Received a valid M-SEARCH message for search target urn:schemas-upnp-org:device:MediaServer:1 from address /192.168.1.3:61601
2011-11-30 22:25:05,093 DEBUG [DiscoverySearchResponder] Sending 1 M-SEARCH response message(s) to /192.168.1.3:61601
2011-11-30 22:25:05,093 DEBUG [WebServer] Incoming connection from /192.168.1.3:58895
2011-11-30 22:25:05,093 DEBUG [DeviceDescriptionRequestHandler] DeviceDescription request received for device 61cd396e-1894-3da9-91a2-e8090bcf4e54 from 192.168.1.3 (headers = [Cache-Control: no-cache,Connection: Close,Pragma: no-cache,Accept: text/xml, application/xml,Accept-Encoding: peerdist,Host: 192.168.1.11:8895,User-Agent: Microsoft-Windows/6.1 UPnP/1.0 Windows-Media-Player-DMS/12.0.7600.16385 DLNADOC/1.50,X-P2P-PeerDist: Version=1.0])
2011-11-30 22:25:05,093 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.3
2011-11-30 22:25:05,093 DEBUG [RendererManager] Looking for a renderer profile for Http headers: [Cache-Control: no-cache,Connection: Close,Pragma: no-cache,Accept: text/xml, application/xml,Accept-Encoding: peerdist,Host: 192.168.1.11:8895,User-Agent: Microsoft-Windows/6.1 UPnP/1.0 Windows-Media-Player-DMS/12.0.7600.16385 DLNADOC/1.50,X-P2P-PeerDist: Version=1.0]
2011-11-30 22:25:05,125 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.3
2011-11-30 22:25:05,156 DEBUG [DeviceDescriptionRequestHandler] Sending DeviceDescription XML back using profile 'Generic DLNA profile'
2011-11-30 22:25:05,343 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_EU_ISO
2011-11-30 22:25:05,343 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_NA_ISO
2011-11-30 22:25:05,343 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_KO_ISO
2011-11-30 22:25:05,343 DEBUG [AbstractTranscodingDeliveryEngine] Sending transcoding stream
2011-11-30 22:25:05,359 DEBUG [MediaItemDAOImpl] Marking MediaItem (id = 1978) as read
2011-11-30 22:25:05,375 DEBUG [LocalContentCacheDecorator] Cleared cache (local_resetafterplay)
2011-11-30 22:25:05,375 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: 50000000000
2011-11-30 22:25:05,375 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-11-30 22:25:05,375 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: video/mpeg,TimeSeekRange.dlna.org: npt=0.0-33.0/33,Content-Length: 50000000000,Date: Wed, 30 Nov 2011 11:25:05 GMT,Server: Windows XP, UPnP/1.0 DLNADOC/1.50, Serviio/0.6.0.1,Cache-control: no-cache,contentFeatures.dlna.org: DLNA.ORG_PN=MPEG_TS_SD_KO_ISO;DLNA.ORG_OP=10;DLNA.ORG_CI=1;DLNA.ORG_FLAGS=01500000000000000000000000000000,transferMode.dlna.org: Streaming,MediaInfo.sec: SEC_Duration=33000;]]
2011-11-30 22:25:05,375 DEBUG [WebServer] Incoming connection from /192.168.1.3:58904
2011-11-30 22:25:05,375 DEBUG [UPnPIconRequestHandler] UPnP icon request received for icon smallPNG
2011-11-30 22:25:08,125 DEBUG [DiscoverySSDPMessageListener] Received a valid M-SEARCH message for search target urn:schemas-upnp-org:device:MediaServer:1 from address /192.168.1.3:61601
2011-11-30 22:25:08,125 DEBUG [DiscoverySSDPMessageListener] Received a valid M-SEARCH message for search target urn:schemas-upnp-org:device:MediaRenderer:1 from address /192.168.1.3:61601
2011-11-30 22:25:08,125 DEBUG [DiscoverySearchResponder] Sending 1 M-SEARCH response message(s) to /192.168.1.3:61601
2011-11-30 22:25:09,140 DEBUG [WebServer] Incoming connection from /192.168.1.2:56276
2011-11-30 22:25:09,140 DEBUG [ResourceTransportRequestHandler] HEAD /resource/1978/MEDIA_ITEM/MPEG_TS_SD_KO_ISO$0 HTTP/1.0, headers = [getCaptionInfo.sec: 1]]
2011-11-30 22:25:09,140 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.2
2011-11-30 22:25:09,140 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-11-30 22:25:09,140 DEBUG [ResourceTransportRequestHandler] Request for resource 1978 and type 'MEDIA_ITEM' received
2011-11-30 22:25:09,140 DEBUG [MediaResourceRetrievalStrategy] Getting information about media item 1978 (local)
2011-11-30 22:25:09,140 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-11-30 22:25:09,140 DEBUG [VideoDAOImpl] Reading a Video (id = 1978)
2011-11-30 22:25:09,140 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 1978, format MPEG_TS_SD_KO_ISO and profile Samsung TV / player (C/D-series)
2011-11-30 22:25:09,140 DEBUG [AbstractTranscodingDeliveryEngine] Getting media info for transcoded version of file P1020395.MOV
2011-11-30 22:25:09,140 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_EU_ISO
2011-11-30 22:25:09,140 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_NA_ISO
2011-11-30 22:25:09,140 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_KO_ISO
2011-11-30 22:25:09,140 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-11-30 22:25:09,140 DEBUG [MediaItemDAOImpl] Getting file of media item 1978
2011-11-30 22:25:09,140 DEBUG [ResourceTransportRequestHandler] Sending HEAD response back
2011-11-30 22:25:09,140 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: video/mpeg,Content-Length: 50000000000,Date: Wed, 30 Nov 2011 11:25:09 GMT,Server: Windows XP, UPnP/1.0 DLNADOC/1.50, Serviio/0.6.0.1,Cache-control: no-cache,transferMode.dlna.org: Streaming,contentFeatures.dlna.org: DLNA.ORG_PN=MPEG_TS_SD_KO_ISO;DLNA.ORG_OP=10;DLNA.ORG_CI=1;DLNA.ORG_FLAGS=01500000000000000000000000000000]]
2011-11-30 22:25:09,390 DEBUG [WebServer] Incoming connection from /192.168.1.2:57223
2011-11-30 22:25:09,390 DEBUG [ResourceTransportRequestHandler] HEAD /resource/1978/MEDIA_ITEM/MPEG_TS_SD_KO_ISO$0 HTTP/1.0, headers = [getCaptionInfo.sec: 1]]
2011-11-30 22:25:09,390 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.2
2011-11-30 22:25:09,406 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-11-30 22:25:09,406 DEBUG [ResourceTransportRequestHandler] Request for resource 1978 and type 'MEDIA_ITEM' received
2011-11-30 22:25:09,406 DEBUG [MediaResourceRetrievalStrategy] Getting information about media item 1978 (local)
2011-11-30 22:25:09,406 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-11-30 22:25:09,406 DEBUG [VideoDAOImpl] Reading a Video (id = 1978)
2011-11-30 22:25:09,406 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 1978, format MPEG_TS_SD_KO_ISO and profile Samsung TV / player (C/D-series)
2011-11-30 22:25:09,406 DEBUG [AbstractTranscodingDeliveryEngine] Getting media info for transcoded version of file P1020395.MOV
2011-11-30 22:25:09,406 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_EU_ISO
2011-11-30 22:25:09,406 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_NA_ISO
2011-11-30 22:25:09,406 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_KO_ISO
2011-11-30 22:25:09,406 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-11-30 22:25:09,421 DEBUG [MediaItemDAOImpl] Getting file of media item 1978
2011-11-30 22:25:09,421 DEBUG [ResourceTransportRequestHandler] Sending HEAD response back
2011-11-30 22:25:09,421 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: video/mpeg,Content-Length: 50000000000,Date: Wed, 30 Nov 2011 11:25:09 GMT,Server: Windows XP, UPnP/1.0 DLNADOC/1.50, Serviio/0.6.0.1,Cache-control: no-cache,transferMode.dlna.org: Streaming,contentFeatures.dlna.org: DLNA.ORG_PN=MPEG_TS_SD_KO_ISO;DLNA.ORG_OP=10;DLNA.ORG_CI=1;DLNA.ORG_FLAGS=01500000000000000000000000000000]]
2011-11-30 22:25:09,421 DEBUG [DiscoveryAdvertisementNotifier] Multicasting SSDP alive using interface eth0 (MAC Bridge Miniport - Packet Scheduler Miniport) and address 192.168.1.11, timeout = 0
2011-11-30 22:25:09,437 DEBUG [DiscoveryAdvertisementNotifier] Sending 6 'alive' messages describing device 61cd396e-1894-3da9-91a2-e8090bcf4e54
2011-11-30 22:25:09,812 DEBUG [WebServer] I/O error: Connection reset by peer: socket write error
2011-11-30 22:25:09,984 DEBUG [OnlineRepositoryDAOImpl] Reading all OnlineRepositories
2011-11-30 22:25:10,000 DEBUG [OnlineRepositoryDAOImpl] Reading an OnlineRepository (id = 2)
2011-11-30 22:25:10,000 DEBUG [FeedCacheDecorator] Found entry in the cache (online_feeds), returning it
2011-11-30 22:25:10,000 DEBUG [OnlineRepositoryDAOImpl] Reading an OnlineRepository (id = 3)
2011-11-30 22:25:10,000 DEBUG [FeedCacheDecorator] Found entry in the cache (online_feeds), returning it
2011-11-30 22:25:11,140 DEBUG [DiscoverySSDPMessageListener] Received a valid M-SEARCH message for search target urn:schemas-upnp-org:device:MediaRenderer:1 from address /192.168.1.3:61601
2011-11-30 22:25:11,140 DEBUG [DiscoverySSDPMessageListener] Received a valid M-SEARCH message for search target urn:schemas-upnp-org:device:MediaServer:1 from address /192.168.1.3:61601
2011-11-30 22:25:11,140 DEBUG [DiscoverySearchResponder] Sending 1 M-SEARCH response message(s) to /192.168.1.3:61601


  Code:
   <Transcoding>
         <!-- Transcode all h264 video with HIGH/MAIN > Level 4.1 on MPEG-TS stream with MPEG2VIDEO and ac3 audio transcoding -->
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="192">
            <Matches container="avi" vCodec="h264" profile="high" levelGreaterThan="4.2" />
            <Matches container="avi" vCodec="h264" profile="main" levelGreaterThan="4.2" />
            <Matches container="matroska" vCodec="h264" profile="high" levelGreaterThan="4.2" />
            <Matches container="matroska" vCodec="h264" profile="main" levelGreaterThan="4.2" />
            <Matches container="mp4" vCodec="h264" profile="high" levelGreaterThan="4.2" />
            <Matches container="mp4" vCodec="h264" profile="main" levelGreaterThan="4.2" />
                                <Matches container="mp4" vCodec="mpeg4" aCodec="lpcm" />
         </Video>
         <!-- transcode H264 MP4 files with LPCM audio -->
         <Video targetContainer="mpegts" targetACodec="ac3">
            <Matches container="mpegts" aCodec="mp2" />
            <Matches container="flv" vCodec="h264" />
            <Matches container="matroska" vCodec="h264" aCodec="flac" />
            <Matches container="matroska" vCodec="h264" aCodec="vorbis" />
            <Matches container="matroska" vCodec="vc1" />
            <Matches container="ogg" vCodec="mpeg4" />
            <Matches container="3gp" aCodec="amrnb" /> 
         </Video>   
         <!-- transcode MKV with MPEG2 video, remux into mpeg2ts -->
         <!-- transcode AVI with AVC video -->
         <Video targetContainer="mpegts" targetACodec="ac3" targetVCodec="mpeg2video">
            <Matches container="matroska" vCodec="mpeg2video" />
            <Matches container="avi" vCodec="h264" />
            <Matches container="avi" vCodec="mjpeg" />
            <Matches container="avi" vCodec="dvvideo" />
            <Matches container="flv" />
            <Matches container="ogg" />
            <Matches container="mp4" vCodec="mjpeg" />
         </Video>
         <!-- For dvr-ms files force mpeg2video transcoding to fix monotone timestamps problems-->
         <Video targetContainer="mpegts" targetACodec="ac3" forceVTranscoding="true">
            <Matches container="asf" vCodec="mpeg2video" />
         </Video>
         <Video targetContainer="mpegts">
            <Matches container="wtv" />
         </Video>
         <!-- transcode audio only for wmv with wmapro -->
         <Video targetContainer="asf" targetACodec="ac3" aBitrate="256">
            <Matches container="asf" aCodec="wmapro" />
         </Video>
          <Audio targetContainer="lpcm">
            <Matches container="mp4" />
            <Matches container="flac" />
            <Matches container="ogg" />
         </Audio>
      </Transcoding>

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 1:27 pm
by Illico
bugalugs wrote:Now Im getting a codec unsuported error..

I suppose, this message is on your TV.
The ffmpeg command line used to transcode your movie is :
C:\Program Files\Serviio\bin\\..\lib/ffmpeg.exe -i C:\photos\movie\P1020395.MOV -y -threads 2 -vcodec mpeg2video -sameq -r 30 -g 15 -copyts -acodec ac3 -ab 64k -ar 48000 -ac 1 -map 0:0 -map 0:1 -sn -f mpegts C:\WINDOWS\TEMP\Serviio\transcoding-temp-1978-MPEG2TS.stf

The problem should be the 1 channel audio.
Could you try forceStereo option?

Add this on first <video> position:
  Code:
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" forceStereo="true" >
            <Matches container="mp4" vCodec="mjpeg" aCodec="lpcm"/>
</Video>

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 1:54 pm
by bugalugs
no cigar - same error, seems ffmpeg command is unchanged... I just added the new profile to the 1st entry for C/D.....

C:\Program Files\Serviio\bin\\..\lib/ffmpeg.exe -i C:\photos\movie\P1020395.MOV -y -threads 2 -vcodec mpeg2video -sameq -r 30 -g 15 -copyts -acodec ac3 -ab 64k -ar 48000 -ac 1 -map 0:0 -map 0:1 -sn -f mpegts C:\WINDOWS\TEMP\Serviio\transcoding-temp-1978-MPEG2TS.stf

  Code:
2011-12-01 00:45:17,093 DEBUG [ResourceTransportRequestHandler] Request for resource 1978 and type 'MEDIA_ITEM' received
2011-12-01 00:45:17,093 DEBUG [MediaResourceRetrievalStrategy] Getting information about media item 1978 (local)
2011-12-01 00:45:17,093 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-12-01 00:45:17,093 DEBUG [VideoDAOImpl] Reading a Video (id = 1978)
2011-12-01 00:45:17,093 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 1978, format MPEG_TS_SD_KO_ISO and profile Samsung TV / player (C/D-series)
2011-12-01 00:45:17,109 DEBUG [AbstractTranscodingDeliveryEngine] Getting media info for transcoded version of file P1020395.MOV
2011-12-01 00:45:17,109 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_EU_ISO
2011-12-01 00:45:17,109 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_NA_ISO
2011-12-01 00:45:17,109 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_KO_ISO
2011-12-01 00:45:17,109 DEBUG [ResourceTransportRequestHandler] Sending HEAD response back
2011-12-01 00:45:17,109 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: video/mpeg,Content-Length: 50000000000,Date: Wed, 30 Nov 2011 13:45:17 GMT,Server: Windows XP, UPnP/1.0 DLNADOC/1.50, Serviio/0.6.0.1,Cache-control: no-cache,contentFeatures.dlna.org: DLNA.ORG_PN=MPEG_TS_SD_KO_ISO;DLNA.ORG_OP=10;DLNA.ORG_CI=1;DLNA.ORG_FLAGS=01500000000000000000000000000000,transferMode.dlna.org: Streaming]]
2011-12-01 00:45:17,125 DEBUG [WebServer] Incoming connection from /192.168.1.2:47865
2011-12-01 00:45:17,156 DEBUG [ResourceTransportRequestHandler] GET /resource/1978/MEDIA_ITEM/MPEG_TS_SD_KO_ISO$0 HTTP/1.0, headers = [getcontentFeatures.dlna.org: 1,transferMode.dlna.org: Streaming,getMediaInfo.sec: 1,TimeSeekRange.dlna.org: npt=0-,Host: 192.168.1.11:8895]]
2011-12-01 00:45:17,156 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.2
2011-12-01 00:45:17,156 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-12-01 00:45:17,156 DEBUG [ResourceTransportRequestHandler] Request for resource 1978 and type 'MEDIA_ITEM' received
2011-12-01 00:45:17,156 DEBUG [MediaResourceRetrievalStrategy] Getting information about media item 1978 (local)
2011-12-01 00:45:17,156 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-12-01 00:45:17,171 DEBUG [VideoDAOImpl] Reading a Video (id = 1978)
2011-12-01 00:45:17,171 DEBUG [VideoDeliveryEngine] Delivering item '1978' for client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-12-01 00:45:17,171 DEBUG [VideoDeliveryEngine] Delivering file 'P1020395.MOV' using transcoding
2011-12-01 00:45:17,171 DEBUG [AbstractTranscodingDeliveryEngine] No suitable transcoding job exists yet, start one for client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-12-01 00:45:17,171 DEBUG [MediaItemDAOImpl] Getting file of media item 1978
2011-12-01 00:45:17,171 DEBUG [FFMPEGWrapper] Invoking FFmpeg to transcode video file: C:\photos\movie\P1020395.MOV
2011-12-01 00:45:17,171 DEBUG [ProcessExecutor] Starting C:\Program Files\Serviio\bin\\..\lib/ffmpeg.exe -i C:\photos\movie\P1020395.MOV -y -threads 2 -vcodec mpeg2video -sameq -r 30 -g 15 -copyts -acodec ac3 -ab 64k -ar 48000 -ac 1 -map 0:0 -map 0:1 -sn -f mpegts C:\WINDOWS\TEMP\Serviio\transcoding-temp-1978-MPEG2TS.stf
2011-12-01 00:45:17,671 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_EU_ISO
2011-12-01 00:45:17,671 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_NA_ISO
2011-12-01 00:45:17,671 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_KO_ISO
2011-12-01 00:45:17,671 DEBUG [AbstractTranscodingDeliveryEngine] Sending transcoding stream
2011-12-01 00:45:17,687 DEBUG [MediaItemDAOImpl] Marking MediaItem (id = 1978) as read
2011-12-01 00:45:18,015 DEBUG [LocalContentCacheDecorator] Cleared cache (local_resetafterplay)
2011-12-01 00:45:18,015 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: 50000000000
2011-12-01 00:45:18,015 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-12-01 00:45:18,015 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: video/mpeg,TimeSeekRange.dlna.org: npt=0.0-33.0/33,Content-Length: 50000000000,Date: Wed, 30 Nov 2011 13:45:18 GMT,Server: Windows XP, UPnP/1.0 DLNADOC/1.50, Serviio/0.6.0.1,Cache-control: no-cache,contentFeatures.dlna.org: DLNA.ORG_PN=MPEG_TS_SD_KO_ISO;DLNA.ORG_OP=10;DLNA.ORG_CI=1;DLNA.ORG_FLAGS=01500000000000000000000000000000,transferMode.dlna.org: Streaming,MediaInfo.sec: SEC_Duration=33000;]]
2011-12-01 00:45:21,921 DEBUG [WebServer] Incoming connection from /192.168.1.2:33306
2011-12-01 00:45:21,921 DEBUG [ResourceTransportRequestHandler] HEAD /resource/1978/MEDIA_ITEM/MPEG_TS_SD_KO_ISO$0 HTTP/1.0, headers = [getCaptionInfo.sec: 1]]
2011-12-01 00:45:21,921 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.2
2011-12-01 00:45:21,921 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-12-01 00:45:21,937 DEBUG [ResourceTransportRequestHandler] Request for resource 1978 and type 'MEDIA_ITEM' received
2011-12-01 00:45:21,937 DEBUG [MediaResourceRetrievalStrategy] Getting information about media item 1978 (local)
2011-12-01 00:45:21,937 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-12-01 00:45:21,937 DEBUG [VideoDAOImpl] Reading a Video (id = 1978)
2011-12-01 00:45:21,937 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 1978, format MPEG_TS_SD_KO_ISO and profile Samsung TV / player (C/D-series)
2011-12-01 00:45:21,937 DEBUG [AbstractTranscodingDeliveryEngine] Getting media info for transcoded version of file P1020395.MOV
2011-12-01 00:45:21,937 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_EU_ISO
2011-12-01 00:45:21,937 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_NA_ISO
2011-12-01 00:45:21,937 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_KO_ISO
2011-12-01 00:45:21,937 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-12-01 00:45:21,937 DEBUG [MediaItemDAOImpl] Getting file of media item 1978
2011-12-01 00:45:21,953 DEBUG [ResourceTransportRequestHandler] Sending HEAD response back
2011-12-01 00:45:21,953 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: video/mpeg,Content-Length: 50000000000,Date: Wed, 30 Nov 2011 13:45:21 GMT,Server: Windows XP, UPnP/1.0 DLNADOC/1.50, Serviio/0.6.0.1,Cache-control: no-cache,transferMode.dlna.org: Streaming,contentFeatures.dlna.org: DLNA.ORG_PN=MPEG_TS_SD_KO_ISO;DLNA.ORG_OP=10;DLNA.ORG_CI=1;DLNA.ORG_FLAGS=01500000000000000000000000000000]]
2011-12-01 00:45:22,250 DEBUG [WebServer] Incoming connection from /192.168.1.2:36328
2011-12-01 00:45:22,250 DEBUG [ResourceTransportRequestHandler] HEAD /resource/1978/MEDIA_ITEM/MPEG_TS_SD_KO_ISO$0 HTTP/1.0, headers = [getCaptionInfo.sec: 1]]
2011-12-01 00:45:22,250 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.2
2011-12-01 00:45:22,250 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.1.2, Profile=Samsung TV / player (C/D-series)'
2011-12-01 00:45:22,250 DEBUG [ResourceTransportRequestHandler] Request for resource 1978 and type 'MEDIA_ITEM' received
2011-12-01 00:45:22,250 DEBUG [MediaResourceRetrievalStrategy] Getting information about media item 1978 (local)
2011-12-01 00:45:22,250 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-12-01 00:45:22,250 DEBUG [VideoDAOImpl] Reading a Video (id = 1978)
2011-12-01 00:45:22,250 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 1978, format MPEG_TS_SD_KO_ISO and profile Samsung TV / player (C/D-series)
2011-12-01 00:45:22,250 DEBUG [AbstractTranscodingDeliveryEngine] Getting media info for transcoded version of file P1020395.MOV
2011-12-01 00:45:22,250 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_EU_ISO
2011-12-01 00:45:22,250 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_NA_ISO
2011-12-01 00:45:22,250 DEBUG [VideoDeliveryEngine] Found Format profile for transcoded file P1020395.MOV: MPEG_TS_SD_KO_ISO
2011-12-01 00:45:22,250 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 1978)
2011-12-01 00:45:22,250 DEBUG [MediaItemDAOImpl] Getting file of media item 1978
2011-12-01 00:45:22,250 DEBUG [ResourceTransportRequestHandler] Sending HEAD response back
2011-12-01 00:45:22,250 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: video/mpeg,Content-Length: 50000000000,Date: Wed, 30 Nov 2011 13:45:22 GMT,Server: Windows XP, UPnP/1.0 DLNADOC/1.50, Serviio/0.6.0.1,Cache-control: no-cache,transferMode.dlna.org: Streaming,contentFeatures.dlna.org: DLNA.ORG_PN=MPEG_TS_SD_KO_ISO;DLNA.ORG_OP=10;DLNA.ORG_CI=1;DLNA.ORG_FLAGS=01500000000000000000000000000000]]
2011-12-01 00:45:22,406 DEBUG [WebServer] I/O error: Connection reset by peer: socket write error
2011-12-01 00:45:25,421 DEBUG [WebServer] Incoming connection from /192.168.1.2:33246
2011-12-01 00:45:25,437 DEBUG [ResourceTransportRequestHandler] HEAD /resource/1979/MEDIA_ITEM/MPEG_TS_SD_KO_ISO$0 HTTP/1.0, headers = [getcontentFeatures.dlna.org: 1,Host: 192.168.1.11:8895]]
2011-12-01 00:45:25,468 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.1.2

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Wed Nov 30, 2011 2:48 pm
by Illico
Grrrr!!!

So just for testing, could you try locally this command line (with -ac 2), then add the output file to serviio library and try to play it:
C:\Program Files\Serviio\bin\\..\lib/ffmpeg.exe -i "C:\photos\movie\P1020395.MOV" -y -threads 2 -vcodec mpeg2video -sameq -r 30 -g 15 -copyts -acodec ac3 -ab 64k -ar 48000 -ac 2 -map 0:0 -map 0:1 -sn -f mpegts "C:\WINDOWS\TEMP\Serviio\TEST.ts"

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Thu Dec 01, 2011 11:38 am
by bugalugs
Looks like a few errors in the transcode.

Incompatible pixel format 'yuvj420p' for codec 'mpeg2video', auto-selecting format 'yuv420p'
[buffer @ 01779480] w:848 h:480 pixfmt:yuvj420p tb:1/1000000 sar:0/1 sws_param:
[buffersink @ 0177fd60] auto-inserting filter 'auto-inserted scaler 0' between the filter 'src' and the filter 'out'
[scale @ 01778740] w:848 h:480 fmt:yuvj420p -> w:848 h:480 fmt:yuv420p flags:0x4
Incompatible sample format 'u8' for codec 'ac3', auto-selecting format 'flt'


  Code:
C:\photos\movie>\ffmpeg.exe -i "C:\photos\movie\P1020395.MOV" -y -threads 2 -vcodec mpeg2video -sameq -r 30 -g 15 -copyts
dec ac3 -ab 64k -ar 48000 -ac 2 -map 0:0 -map 0:1 -sn -f mpegts "C:\WINDOWS\TEMP\Serviio\TEST.ts
ffmpeg version N-31480-g8bc3a48, Copyright (c) 2000-2011 the FFmpeg developers
  built on Jul 14 2011 23:37:53 with gcc 4.4.2
  configuration: --enable-static --disable-shared --disable-ffplay --disable-ffserver --enable-memalign-hack --enable-lib
me --enable-librtmp --extra-libs='-lrtmp -lpolarssl -lws2_32 -lwinmm' --arch=x86 --enable-runtime-cpudetect --enable-pthr
--target-os=mingw32 --cross-prefix=i686-mingw32- --pkg-config=pkg-config
  libavutil    51. 11. 0 / 51. 11. 0
  libavcodec   53.  8. 0 / 53.  8. 0
  libavformat  53.  6. 0 / 53.  6. 0
  libavdevice  53.  2. 0 / 53.  2. 0
  libavfilter   2. 25. 0 /  2. 25. 0
  libswscale    2.  0. 0 /  2.  0. 0
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'C:\photos\movie\P1020395.MOV':
  Metadata:
    creation_time   : 2010-08-03 03:32:22
  Duration: 00:00:33.00, start: 0.000000, bitrate: 13098 kb/s
    Stream #0.0(eng): Video: mjpeg, yuvj420p, 848x480, 13032 kb/s, 30 fps, 30 tbr, 30 tbn, 30 tbc
    Metadata:
      creation_time   : 2010-08-03 03:32:22
    Stream #0.1(eng): Audio: pcm_u8, 8000 Hz, 1 channels, u8, 64 kb/s
    Metadata:
      creation_time   : 2010-08-03 03:32:22
Incompatible pixel format 'yuvj420p' for codec 'mpeg2video', auto-selecting format 'yuv420p'
[buffer @ 01779480] w:848 h:480 pixfmt:yuvj420p tb:1/1000000 sar:0/1 sws_param:
[buffersink @ 0177fd60] auto-inserting filter 'auto-inserted scaler 0' between the filter 'src' and the filter 'out'
[scale @ 01778740] w:848 h:480 fmt:yuvj420p -> w:848 h:480 fmt:yuv420p flags:0x4
Incompatible sample format 'u8' for codec 'ac3', auto-selecting format 'flt'
[ac3 @ 0177f260] channel_layout not specified
[ac3 @ 0177f260] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[mpegts @ 017789a0] muxrate VBR, pcr every 3 pkts, sdt every 200, pat/pmt every 40 pkts
Output #0, mpegts, to 'C:\WINDOWS\TEMP\Serviio\TEST.ts':
  Metadata:
    creation_time   : 2010-08-03 03:32:22
    encoder         : Lavf53.6.0
    Stream #0.0(eng): Video: mpeg2video, yuv420p, 848x480, q=2-31, 200 kb/s, 90k tbn, 30 tbc
    Metadata:
      creation_time   : 2010-08-03 03:32:22
    Stream #0.1(eng): Audio: ac3, 48000 Hz, stereo, flt, 64 kb/s
    Metadata:
      creation_time   : 2010-08-03 03:32:22
Stream mapping:
  Stream #0.0 -> #0.0
  Stream #0.1 -> #0.1
Press [q] to stop, [?] for help
Warning, using s16 intermediate sample format for resampling
frame=  990 fps= 27 q=23.0 Lsize=    4620kB time=00:00:32.96 bitrate=1148.1kbits/s
video:3905kB audio:258kB global headers:0kB muxing overhead 10.981085%

C:\photos\movie>

Re: Playing movies - Panasonic camera .mov JPEG files

PostPosted: Thu Dec 01, 2011 2:43 pm
by Illico
bugalugs wrote:Looks like a few errors in the transcode.

And do you add the resulting file "C:\WINDOWS\TEMP\Serviio\TEST.ts" into serviio library and try to play it?