feat: use ffmpeg as stream backend and oto for sound output, GUI improvements #1

Merged
resetreboot merged 4 commits from ffplay_test into master 2023-12-06 16:36:33 +01:00
Showing only changes of commit 91c2d22253 - Show all commits

View file

@ -341,11 +341,15 @@ func main() {
volumeUp := widget.NewButtonWithIcon("", theme.VolumeUpIcon(), func() {
streamPlayer.IncVolume()
})
volumeMute := widget.NewButtonWithIcon("", theme.VolumeMuteIcon(), func() {
streamPlayer.Mute()
})
controlContainer := container.NewHBox(
nowPlayingLabelHeader,
layout.NewSpacer(),
volumeDown,
volumeUp,
volumeMute,
)
nowPlayingLabel.Alignment = fyne.TextAlignCenter