Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for streaming incompatibility with some renderers. (thanks, ExSpo…
  • Loading branch information
Raptor399 committed Mar 30, 2013
1 parent 8c1dd4d commit 01bfd98
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
23 changes: 12 additions & 11 deletions CHANGELOG.txt
Expand Up @@ -6,22 +6,23 @@ Changelog:
Regressions:
- Re-allow all transcode engines to be disabled
PMS.conf:
- ffmpeg has been renamed ffmpeg_video_custom_options and now defaults to null
- FFmpeg has been renamed ffmpeg_video_custom_options and now defaults to null
Renderers:
- Document TranscodeVideo and TranscodeAudio profiles
- Panasonic TVs: Add "exclusive" option to SeekByTime to work around a transcoding issue
- PS3: Restore seek-by-time support for streaming
- Android: allowing chunked transfer
- AirPlayer & iPad/iPhone: transcoding to WMV format gives better results
- Improved support for Sony Bravia HX (thanks, mazey!)
- Improved streaming support for some renderers (thanks, ExSport!)
Engines:
FFmpeg Video and FFmpeg Web Video:
- support all three TranscodeVideo profiles: WMV, MPEGTSAC3 and MPEGPSAC3
- preserve source video quality
- Support all three TranscodeVideo profiles: WMV, MPEGTSAC3 and MPEGPSAC3
- Preserve source video quality
FFmpeg Video:
- custom FFmpeg options are now read before each transcode rather than only at startup
- Custom FFmpeg options are now read before each transcode rather than only at startup
(parity with custom MEncoder options)
- rescale videos larger than the renderer's max height/width
- Rescale videos larger than the renderer's max height/width
- Updated to use "wmav2" codec (#1583)
FFmpeg Audio: support all TranscodeAudio profiles
VLC:
Expand All @@ -32,12 +33,12 @@ Changelog:
- Updated simplified Chinese translation (thanks, lovenemesis!)
- Updated Italian translation (thanks, nocciola82!)
Misc:
- fix bug that prevents PMS running multiple profiles concurrently
- fix NPE when responding to DLNA subtitle requests
- image thumbnailer:
- add thumbnail support for TIFF and other formats
- trap exception when handling unsupported formats
- fix response to M-SEARCH "ssdp:all" message (thanks, ler0y!)
- Fixed bug that prevents PMS running multiple profiles concurrently
- Fixed NPE when responding to DLNA subtitle requests
- Image thumbnailer:
- Added thumbnail support for TIFF and other formats
- Trapped exception when handling unsupported formats
- Fixed response to M-SEARCH "ssdp:all" message (thanks, ler0y!)
- Moved several transcoding settings from MEncoder to Common transcoding settings

1.72.0 - 2012-11-18
Expand Down
9 changes: 2 additions & 7 deletions src/main/java/net/pms/dlna/DLNAResource.java
Expand Up @@ -1375,13 +1375,8 @@ public final String toString(RendererConfiguration mediaRenderer) {
}
}
} else { // streamed
// chocolateboy 2012-11-25: seek-by-time used to be disabled here for the PS3
// (the flag was left at the default seek-by-byte value) and only set to
// seek-by-both for non-PS3 renderers. I can't reproduce with PS3 firmware 4.31
// whatever (undocumented) issue led to the creation of this exception, so
// it has been removed unless/until someone can reproduce it (e.g. with old
// firmware)
dlnaOrgOpFlags = "11";
// See: http://www.ps3mediaserver.org/forum/viewtopic.php?f=6&t=15841&start=10#p76201
dlnaOrgOpFlags = "01";
}
}

Expand Down

0 comments on commit 01bfd98

Please sign in to comment.