tramhao

Results 154 comments of tramhao

we use cpal package to manage sound devices. Cpal use alsa under linux

https://snapcraft.io/docs/alsa-interface I found there some useful info. ``` The libasound2 library needs to be included in a snap’s stage-packages, of the part which uses ALSA, either directly or through some...

You are right. This is a problem I met when implement server. The playlist should be managed by the server, and the client can fetch it from server. And all...

> i just tried compiling latest master([50e64f0](https://github.com/tramhao/termusic/commit/50e64f07e152df1f7ceb04f208b2f4f5ea659f04)) with LTO, which seems to compile and run just fine. > > also i dont know if the owner of this package is...

Seems that the server binary termusic-server is not copied during installation. Please find it in the target/release directory and copy it to your $PATH. You can also clone the repository...

Sorry I didn't update the readme of cargo install. Now the command becomes: ``` cargo install termusic termusic-server ```

seems need modification but I'm not familiar with the syntax of this file. Help!

Updated pkgbuild: ```bash # Maintainer: orhun # https://github.com/orhun/pkgbuilds pkgname=termusic pkgver=0.7.11 pkgrel=1 pkgdesc="Music Player TUI written in Rust" arch=('x86_64') url="https://github.com/tramhao/termusic" license=('MIT' 'GPL3') depends=('gstreamer' 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad' 'gst-plugins-ugly' 'gst-libav' 'dbus' 'ueberzug' 'protobuf')...

DurationNext is used to enable gapless play. Did you test this PR with gapless playback? I use an album the wall to test it.

I don't remember the detail but the whole idea is, when gapless is enabled, the next song will be add to queue, and the queue will play next track when...