LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Mandriva (https://www.linuxquestions.org/questions/mandriva-30/)
-   -   How can i install Mediathekview in Rosa or Mageia Linux (https://www.linuxquestions.org/questions/mandriva-30/how-can-i-install-mediathekview-in-rosa-or-mageia-linux-4175604299/)

Fangi 04-21-2017 02:46 AM

How can i install Mediathekview in Rosa or Mageia Linux
 
I'm a simple-user in Germany. I love Rosa and Mageia Linux. But it`s important for me, to have the program mediathekview for looking and downloading German TV-movies on board.
So i need a simple solution.

hydrurga 04-21-2017 03:39 PM

Have you tried downloading the MediathekView code and, after reading Hilfe___bitte_lesen.txt, running ./MediathekView__Linux.sh?

ondoho 04-22-2017 01:56 AM

on my system, it depends on java-openjfx (and mplayer if you want to record streams).

the way i see it, you could just unzip the program into /opt, and use this to start it:
Code:

cat /usr/bin/mediathek
#!/bin/sh
if [ -d "/usr/lib/jvm/java-8-jdk" ]; then
  export PATH=/usr/lib/jvm/java-8-jdk/jre/bin/:$PATH
elif [ -d "/usr/lib/jvm/java-8-jre" ]; then
  export PATH=/usr/lib/jvm/java-8-jre/jre/bin/:$PATH
else
  export PATH=/usr/lib/jvm/java-8-openjdk/jre/bin/:$PATH
fi
cd /opt/mediathek
java -jar MediathekView.jar $*

of course i'm simplifying things; you should definitely follow the instructions provided.


you can also use this directly from your browser: https://mediathekview.de - no installation required.

knudfl 04-22-2017 04:22 AM

MediathekView :
Rosa or Mageia Linux → Both based on Mandrake/Mandriva, i.e. not much different.
( Any OS with a usable java can run 'java -jar MediathekView.jar' ).

cd Downloads/
tar xvf MediathekView-latest.tar.gz
cd MediathekView-13.0.2/
java -jar MediathekView.jar
( Assume /usr/bin/java )


All times are GMT -5. The time now is 09:35 PM.