Results 1 to 8 of 8

Thread: HOWTO Watch HBO GO, Cinemax, Showtime Anytime, Blockbuster and much more on Linux.

Threaded View

  1. #1
    Join Date
    Jun 2011
    Beans
    110

    HOWTO Watch HBO GO, Cinemax, Showtime Anytime, Blockbuster and much more on Linux.

    Hello. I just want to share with you guys how you can watch a ton of on-demand streaming sites on your linux box.
    I'm personally using the wine-browser for this because I've already got Netflix-desktop installed.
    You can of course use a fresh Firefox (32 bit) installation as well.
    Basically what you need to install inside of firefox is
    1) Adobe Flash.
    Use the debug installation:
    http://download.macromedia.com/pub/f...ugin_debug.exe
    2) Widevine:
    https://tools.google.com/dlpage/widevine


    If you want to use the netflix-desktop method here, simply just copy the /usr/bin/netflix-desktop file, rename it and change the website, app name and icon.
    The netflix-desktop app is using bash script, so this pretty easy to understand.


    I use gedit to edit these files, btw (gksudo gedit /usr/bin/netflix-desktop).
    Here's the netflix-desktop file:
    Code:
    #!/bin/sh
    
    
    # Enable translation capabilities
    . gettext.sh
    export TEXTDOMAIN="netflix-desktop";
    export TEXTDOMAINDIR="/usr/share/locale";
    # General strings that are translatable
    gettext_service_name=`gettext "Netflix Desktop"`;
    
    
    
    
    WINE_BROWSER="/usr/bin/wine-browser";
    
    
    
    
    PACKAGE="netflix-desktop" SERVICE="${gettext_service_name}" URL="http://www.netflix.com/" "${WINE_BROWSER}" $*;

    And here's my modified file for HBO Nordic:
    Code:
    #!/bin/sh
    
    
    # Enable translation capabilities
    . gettext.sh
    export TEXTDOMAIN="hbo-desktop";
    export TEXTDOMAINDIR="/usr/share/locale";
    # General strings that are translatable
    gettext_service_name=`gettext "HBO Desktop"`;
    
    
    
    
    WINE_BROWSER="/usr/bin/wine-browser";
    
    
    
    
    PACKAGE="netflix-desktop" SERVICE="${gettext_service_name}" URL="http://www.hbonordic.com/" "${WINE_BROWSER}" $*;

    Now for the menu shortcut, located in /home/username/.local/share/applications
    Here's the netflix-desktop.desktop file (gedit /home/user/.local/share/applications/netflix-desktop.desktop):
    Code:
    [Desktop Entry]Name=Netflix Desktop
    GenericName=Netflix Desktop
    Comment=Watch movies and TV shows on your PC
    Exec=netflix-desktop
    Terminal=false
    Type=Application
    StartupNotify=true
    Icon=/usr/share/icons/netflix.png
    Categories=Video;Player;AudioVideo;

    And my modified file for HBO Nordic:
    Code:
    
    [Desktop Entry]
    Name=HBO Nordic Desktop
    GenericName=HBO Nordic Desktop
    Comment=Watch movies and TV shows on your PC
    Exec=hbo-desktop
    Terminal=false
    Type=Application
    StartupNotify=true
    Icon=/usr/share/icons/hbo.jpg
    Categories=Video;Player;AudioVideo;
    Name[nb_NO]=HBO Nordic Desktop

    And that's how you make apps for your favorite on-demand streaming service.


    Now you can watch 100s of on-demand sites such as HBO GO, M GO, MAX GO, SHO Anytime, FilmFresh, Starz/Encore Play, TMC, DishOnline, Blockbuster Movie Pass, Horizon.tv, HBO Nordic.

    Btw, here's the PPA for Netflix-Desktop: https://launchpad.net/netflix-desktop

    EDIT: Netflix Desktop is firefox in fullscreen. So to navigate around, you can press CTRL+L.
    Last edited by BlackoutWorm; June 27th, 2013 at 12:09 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •