Networked Media Tank
[B-110] Firmware 01-17-100517-15-POP-405 (00-17-091216-15-POP-405 Apps) (04.10.2010) - Printable Version

+- Networked Media Tank (http://www.networkedmediatank.com)
+-- Forum: General (/forumdisplay.php?fid=10)
+--- Forum: Firmware Releases (/forumdisplay.php?fid=11)
+---- Forum: Archive for Old Releases (Read Only) (/forumdisplay.php?fid=111)
+---- Thread: [B-110] Firmware 01-17-100517-15-POP-405 (00-17-091216-15-POP-405 Apps) (04.10.2010) (/showthread.php?tid=44867)

Pages: 1 2


RE: [B-110] Firmware 01-17-100517-15-POP-405 (00-17-091216-15-POP-405 Apps) (04.10.2010) - werner - 04-08-2011 05:30 PM

not really, according to the qa test the b110 update should get released early next week

Regards,
Werner


RE: [B-110] Firmware 01-17-100517-15-POP-405 (00-17-091216-15-POP-405 Apps) (04.10.2010) - MATPOC - 05-02-2011 11:40 AM

(03-06-2011 05:36 PM)MATPOC Wrote:  Popcorn Hour B-110 can't play recorded by tvheadend .mkv files

I found that simple run of mkvmerge on recorded mkv's fix "wrong" mkv structure. But this is the partial solution because working on SD recordings only. HD channels not fixed by mkvmerge may be due h264 stream or something else as reported in bug #464

Use tvheadend setting in Configuration - Digital Video Recorder - Post-processor command: /usr/local/bin/hts-postproc.sh "%f"

Below is the text of this script:

Code:
#!/bin/sh

MKVFILE=$1
POSTPROC="/usr/bin/mkvmerge"

if [ -z "$MKVFILE" ] ; then
  echo "Post-processings for HTS Tveheadend recorded .mkv."
  echo "Usage: $0 /full/path/to/the-record.mkv"
  exit 1
fi

if [ -w "$MKVFILE" ]; then
  if TMPFILE=`/bin/mktemp --tmpdir=${MKVFILE%/*}/` ; then
    if $POSTPROC -q -o $TMPFILE "$MKVFILE" > /dev/null ; then
      /bin/mv -f $TMPFILE "$MKVFILE"
      /bin/chmod 666 "$MKVFILE"
    fi
  fi
fi