radiospiral_linux/main.go

161 lines
3 KiB
Go
Raw Normal View History

2023-12-04 01:24:00 +01:00
package main
import (
"bufio"
"io"
"os/exec"
"strings"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
2023-12-04 01:56:39 +01:00
"fyne.io/fyne/v2/theme"
2023-12-04 01:24:00 +01:00
"fyne.io/fyne/v2/widget"
)
// helper
func check(err error) {
if err != nil {
panic(err)
}
}
// Radio player interface
type RadioPlayer interface {
Play(stream_url string)
Mute()
Pause()
IncVolume()
DecVolume()
Close()
}
// MPlayer
type MPlayer struct {
player_name string
is_playing bool
stream_url string
command *exec.Cmd
in io.WriteCloser
out io.ReadCloser
pipe_chan chan io.ReadCloser
}
func (player *MPlayer) Play(stream_url string) {
if !player.is_playing {
var err error
is_playlist := strings.HasSuffix(stream_url, ".m3u") || strings.HasSuffix(stream_url, ".pls")
if is_playlist {
player.command = exec.Command(player.player_name, "-quiet", "-playlist", stream_url)
} else {
player.command = exec.Command(player.player_name, "-quiet", stream_url)
}
player.in, err = player.command.StdinPipe()
check(err)
player.out, err = player.command.StdoutPipe()
check(err)
err = player.command.Start()
check(err)
player.is_playing = true
player.stream_url = stream_url
go func() {
player.pipe_chan <- player.out
}()
}
}
func (player *MPlayer) Close() {
if player.is_playing {
player.is_playing = false
player.in.Write([]byte("q"))
player.in.Close()
player.out.Close()
player.command = nil
player.stream_url = ""
}
}
func (player *MPlayer) Mute() {
if player.is_playing {
player.in.Write([]byte("m"))
}
}
func (player *MPlayer) Pause() {
if player.is_playing {
player.in.Write([]byte("p"))
}
}
func (player *MPlayer) IncVolume() {
if player.is_playing {
player.in.Write([]byte("*"))
}
}
func (player *MPlayer) DecVolume() {
if player.is_playing {
player.in.Write([]byte("/"))
}
}
func main() {
status_chan := make(chan string)
pipe_chan := make(chan io.ReadCloser)
mplayer := MPlayer{player_name: "mplayer", is_playing: false, pipe_chan: pipe_chan}
go func() {
for {
out_pipe := <-pipe_chan
reader := bufio.NewReader(out_pipe)
for {
data, err := reader.ReadString('\n')
if err != nil {
status_chan <- "Playing stopped"
break
} else {
status_chan <- data
}
}
}
}()
app := app.New()
window := app.NewWindow("RadioSpiral")
2023-12-04 01:56:39 +01:00
play_status := false
2023-12-04 01:24:00 +01:00
radiospiral_label := widget.NewLabel("RadioSpiral")
2023-12-04 01:56:39 +01:00
nowplaying_label := widget.NewLabel("Author - Title")
var play_button *widget.Button
play_button = widget.NewButtonWithIcon("", theme.MediaStopIcon(), func() {
if !mplayer.is_playing {
play_button.SetIcon(theme.MediaPlayIcon())
mplayer.Play("http://radiospiral.radio/stream.mp3")
play_status = true
} else {
if play_status {
play_status = false
play_button.SetIcon(theme.MediaPauseIcon())
} else {
play_status = true
play_button.SetIcon(theme.MediaPlayIcon())
}
mplayer.Pause()
}
})
2023-12-04 01:24:00 +01:00
window.SetContent(container.NewVBox(
radiospiral_label,
nowplaying_label,
2023-12-04 01:56:39 +01:00
play_button,
2023-12-04 01:24:00 +01:00
))
window.ShowAndRun()
2023-12-04 01:28:03 +01:00
mplayer.Close()
2023-12-04 01:24:00 +01:00
}