Subtitles on the Netgear EVA8000

I’ve posted before regarding the lack of support of DTS for the EVA80000, however the solution there is a quick codec change from DTS to AC3 and is pretty straight forward. Recently I wanted to watch a HD movie in MKV format that had subtitles, using mkvinfo on the file revealed that there was a video stream, an audio stream and the subtitles for this movie. Pressing Menu on the EVA8000 whilst the film was on allowed me to turn subtitles on, however this setting appeared broke as it never works.

I read numerous posts regarding playing movies with 2 audio streams and then subtitles in the MKV then subtitles would then work, which sounded like nonsense to me (and turned out to be nonsense as well). It’s a pretty easy fix with two solutions dependent on your situation:

1. Download the subs again from http://subscene.com/, these should be placed in the same directory and share the same name as the mkv you want to watch. You’ll find the EVA8000 finds and uses these subs.

2.Use mkvextract to extract the subs from the mkv file ‘mkvextract tracks “movie.mkv” 3:subs.sub‘ this subs.sub file will need renaming to the same as the mkv with the .sub extension as before.

carrera_twingo

Diluting the brand

I was once lucky enough to see a battered escort driving past in Sheffield on a couple of occasions sporting the M badge, which amusing as it is to me usually makes nick quite annoyed. Still the common practice of sticking random performance badges on cars reached a new peak today:

carrera_twingo

A Renault Twingo ‘carrera’ !

Journey from Sheffield to Germany

From Sheffield to Germany

All my worldly possessions were packed up and placed in a Ford Transit van over Saturday and Sunday. It’s quite eye opening to see your entire life and all the possessions that you feel you ‘need’ in order to function from day to day life all crammed into the back of a van. The contents of a two bedroom flat all packed into numerous boxes, wrapped in bubble wrap and stacking in the van was an upsetting sight. Not as upsetting as walking around the empty flat, especially given all of the craziness the last two years there have provided. :(

The journey took over 17 hours, 2 of which were set in the VIP section of a ferry. We were delayed with accidents on the M25, road works on various roads and horrific weather through Belgium reducing visibility to only a few car lengths. Still at 10:30 the next day we finally arrived outside the new flat in Germany and proceeded to carry my worldly goods up four flights of steps (what you want after no sleep for 27+ hours). Everything is in the flat now, many boxes to go through :(

Journey from Sheffield to Germany

Journey from Sheffield to Germany

img_0107

Couple of images from Germany

Thought i’d throw a couple of images from Germany taken from my iPhone on the internet. Pay particular attention to the image of Kim and Nick looking incredibly confused at the ticket machine in the train station. Also the photo of the toilet might look a bit odd, but look closer, there is a little football net and ball to keep you busy whilst on the toilet. :D

Easy proxy configure for on the move with your mac :)

This script is a little one i’ve just thrown together to make it easy to move around and reconnect to proxies. Could be made a lot better but for basic needs it will suffice :)

#!/bin/bash

# Assuming Use of Airport, change SSH_HOST and SSH_PORT and needed

NETWORK_SERVICE="Airport"

SSH_HOST="hostname"

SSH_PORT=22

PROXY_PORT=8080

echo "Checking IP of Airport to ensure network connectivity"

sudo networksetup -getinfo $NETWORK_SERVICE | grep "IP address" | grep -v v6

sudo networksetup -getairportnetwork

echo "Configuring Proxy … "

sudo networksetup -setsocksfirewallproxy $NETWORK_SERVICE 127.0.0.1 $PROXY_PORT off

echo "Connecting to SSH host. (Press Ctrl+c to exit)"

ssh -q -D $PROXY_PORT -C -N -x $SSH_HOST -p $SSH_PORT

echo " "

echo "Returning settings to default"

sudo networksetup -setsocksfirewallproxystate $NETWORK_SERVICE off

echo "exiting…."