Radio? Sure!

Informations

Créateur Messages
splat Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 7449
Wine: 4.0

Retours d'expérience

Description

RadioSure allows you to browse through a huge variety of stations, sorting by language, country, genre and title. You can also add new stations and toggle a variety of configuration settings that run from enabling hotkeys to recording radio.

* It has the ability to record streams. MP3 streams are always recorded with the original bitrate because there is no encoding performed at all. The stream is just written into the file as is.

* Free stations database, over 30000 stations.

Website. Appdb.winehq.org

Captures d'écran

Miniature

Code source

#!/bin/bash
# Date : (2019-04-19 21-29)
# Last revision : (2019-04-19 21-29)
# Wine version used : 4.0
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4
#
# Tested : v2.2.1046 (RadioSure.exe: january 2016).
#
# CHANGELOG
# [Dadu042] (2019-09-17)
#   First script.
# [Dadu042] (2020-02-03)
#   Add POL_RequiredVersion "4.3.4"
#
# Know issues:
# - The software installs in "~/Local Settings/Application data/RadioSure" (strange).
# - RadioSure's system tray is a little window. How to hide it ?.
# - Filenames of recorded musics have "%20" instead of spaces.

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="RadioSure"
PREFIX="radiosure"
WORKING_WINE_VERSION="4.0"
AUTHOR="Dadu042"
EDITOR="TheBestWare Studio"
GAME_URL="http://http://www.radiosure.com/"

Set_OS "windows 7"

POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
SETUP_EXE="$APP_ANSWER"
POL_Wine start /unix "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
cd "$POL_System_TmpDir"

POL_Shortcut "radiosure.exe" "$TITLE" ""

# Seem useless for RadioSure:
# POL_Call POL_Install_quartz
# POL_Call POL_Install_amstream
# POL_Call POL_Install_ffdshow
#
# Note: RadioSure records directly the MP3 stream to the file.

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Lundi 3 Février 2020 à 0:44
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -9,6 +9,12 @@
 #
 # Tested : v2.2.1046 (RadioSure.exe: january 2016).
 #
+# CHANGELOG
+# [Dadu042] (2019-09-17)
+#   First script.
+# [Dadu042] (2020-02-03)
+#   Add POL_RequiredVersion "4.3.4"
+#
 # Know issues:
 # - The software installs in "~/Local Settings/Application data/RadioSure" (strange).
 # - RadioSure's system tray is a little window. How to hide it ?.
@@ -30,7 +36,8 @@
 POL_Debug_Init
   
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
- 
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "amd64"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Nouveau code source

#!/bin/bash
# Date : (2019-04-19 21-29)
# Last revision : (2019-04-19 21-29)
# Wine version used : 4.0
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4
#
# Tested : v2.2.1046 (RadioSure.exe: january 2016).
#
# CHANGELOG
# [Dadu042] (2019-09-17)
#   First script.
# [Dadu042] (2020-02-03)
#   Add POL_RequiredVersion "4.3.4"
#
# Know issues:
# - The software installs in "~/Local Settings/Application data/RadioSure" (strange).
# - RadioSure's system tray is a little window. How to hide it ?.
# - Filenames of recorded musics have "%20" instead of spaces.

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="RadioSure"
PREFIX="radiosure"
WORKING_WINE_VERSION="4.0"
AUTHOR="Dadu042"
EDITOR="TheBestWare Studio"
GAME_URL="http://http://www.radiosure.com/"

Set_OS "windows 7"

POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
SETUP_EXE="$APP_ANSWER"
POL_Wine start /unix "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
cd "$POL_System_TmpDir"

POL_Shortcut "radiosure.exe" "$TITLE" ""

# Seem useless for RadioSure:
# POL_Call POL_Install_quartz
# POL_Call POL_Install_amstream
# POL_Call POL_Install_ffdshow
#
# Note: RadioSure records directly the MP3 stream to the file.

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Dadu042 Vendredi 19 Avril 2019 à 23:21
Dadu042

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

v2.2.1046 (RadioSure.exe: january 2016) does work.

See also these test reports : https://appdb.winehq.org/

Differences

@@ -0,0 +1,57 @@
+#!/bin/bash
+# Date : (2019-04-19 21-29)
+# Last revision : (2019-04-19 21-29)
+# Wine version used : 4.0
+# Distribution used to test : Ubuntu 18.04 x64
+# Script licence : GPL3
+# Program licence : Retail
+# Playonlinux v4.3.4
+#
+# Tested : v2.2.1046 (RadioSure.exe: january 2016).
+#
+# Know issues:
+# - The software installs in "~/Local Settings/Application data/RadioSure" (strange).
+# - RadioSure's system tray is a little window. How to hide it ?.
+# - Filenames of recorded musics have "%20" instead of spaces.
+
+[ -z "$PLAYONLINUX" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="RadioSure"
+PREFIX="radiosure"
+WORKING_WINE_VERSION="4.0"
+AUTHOR="Dadu042"
+EDITOR="TheBestWare Studio"
+GAME_URL="http://http://www.radiosure.com/"
+
+Set_OS "windows 7"
+
+POL_SetupWindow_Init
+POL_Debug_Init
+  
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+ 
+POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "amd64"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+POL_System_TmpCreate "$TITLE"
+
+cd "$HOME"
+POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+SETUP_EXE="$APP_ANSWER"
+POL_Wine start /unix "$SETUP_EXE"
+POL_Wine_WaitExit "$TITLE"
+cd "$POL_System_TmpDir"
+
+POL_Shortcut "radiosure.exe" "$TITLE" ""
+
+# Seem useless for RadioSure:
+# POL_Call POL_Install_quartz
+# POL_Call POL_Install_amstream
+# POL_Call POL_Install_ffdshow
+#
+# Note: RadioSure records directly the MP3 stream to the file.
+
+POL_System_TmpDelete
+POL_SetupWindow_Close
+exit 0

Nouveau code source

#!/bin/bash
# Date : (2019-04-19 21-29)
# Last revision : (2019-04-19 21-29)
# Wine version used : 4.0
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4
#
# Tested : v2.2.1046 (RadioSure.exe: january 2016).
#
# Know issues:
# - The software installs in "~/Local Settings/Application data/RadioSure" (strange).
# - RadioSure's system tray is a little window. How to hide it ?.
# - Filenames of recorded musics have "%20" instead of spaces.

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="RadioSure"
PREFIX="radiosure"
WORKING_WINE_VERSION="4.0"
AUTHOR="Dadu042"
EDITOR="TheBestWare Studio"
GAME_URL="http://http://www.radiosure.com/"

Set_OS "windows 7"

POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
SETUP_EXE="$APP_ANSWER"
POL_Wine start /unix "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
cd "$POL_System_TmpDir"

POL_Shortcut "radiosure.exe" "$TITLE" ""

# Seem useless for RadioSure:
# POL_Call POL_Install_quartz
# POL_Call POL_Install_amstream
# POL_Call POL_Install_ffdshow
#
# Note: RadioSure records directly the MP3 stream to the file.

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

splat Dimanche 24 Février 2019 à 1:51
splat Anonymous

Messages

 

I did a manual install of this program. This program works without having to do anything special. EXCEPT: you have to manually add the launch icon.

 

Notes:

I am running Debian Stretch (stable)

I am running wine-4.0 (Debian 4.0-1~bpo9+2) from Debian backports.

 

This step tells Debian to use the i386 architecture as well as amd64. You should do this even if you do not follow the backports instructions below.

I origianally had a lot of problems with wine and it was because of not doing this.

# dpkg --add-architecture i386

# apt update

# apt upgrade (make sure all your software is up to date!)

 

To install from backports, first add backports to your repos.

# echo "deb http://deb.debian.org/debian stretch-backports main" | tee /etc/apt/sources.list.d/stretch-backports.list

# apt update

 
Then install (or re-install) Wine:

# apt install \
      wine/stretch-backports \
      wine32/stretch-backports \
      wine64/stretch-backports \
      libwine/stretch-backports \
      libwine:i386/stretch-backports \
      fonts-wine/stretch-backports

This will install Wine 4.?.? from backports, and should give improved compatibility.

 

Also, I create a 32bit wine prefix:

$ WINEARCH=win32 WINEPREFIX=~/.wine wine wineboot

 

Then I run winetricks and install core fonts to the default wine prefix (~/.wine)

 

If you are using an unmodified "sources.list" file, you may need to add "contrib" to your repositories:

# nano /etc/apt/sources.list

deb http://mirrors.kernel.org/debian/ stretch main contrib

deb http://security.debian.org/debian-security stretch/updates main contrib

 

This is because winetricks is located in the "contrib" section.

https://packages.debian.org/stretch/winetricks

 

An unrelated FYI... If you use multimedia applications you might want to do the following to get newer/updated software... I'm pretty sure this will also work with Ubuntu.

Add deb-multimedia.org to your repos. Check out their software!

 

# echo "deb http://deb-multimedia.org stretch main non-free" | tee /etc/apt/sources.list.d/deb-multimedia.list

 

AFTER following the instructions on their home page to install their keyring, do this:

# apt update

# apt upgrade

 

 

 

 

 

 

Réponses

Edité par splat