• 3 Posts
  • 26 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle

  • Unfortunately I can not login with GDM using X. I am having the same bug as in here :/ For wayland, I have both read/write permissions for my username.

    Also I can use the PS5 controller as a mouse just fine. Another symptom I see is when I run xdotool mousemove 150 150, it will print Warning: XTEST extension unavailable on '(null)'. Some functionality may be disabled; See 'man xdotool' for more info.. The null here is concerning to me. Not sure how it says on other system.


  • No steam uses XTEST under the hood for controller. You can see a bug report here. You could try to disable the XTEST extensions and the steam client will crash if you connect with a controller.

    For the symptom, If I do a xdpyinfo it will print a list of enabled extensions and no matter what i’ve tried it does not have the XTEST extension.












  • lyoko@lemm.eeOPtoSelfhosted@lemmy.worldAn Opensubsonic server in Rust
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    1 year ago

    Thank you very much for your kind word! I’ve seen that scanner already but decided to reimplement anyway because I want to choose a different design from the start and have the flexibility to add some new features myself (some kind of ML integration like immich and S3 integration). At worse case, I will still use this so no problems :D


  • lyoko@lemm.eeOPtoSelfhosted@lemmy.worldAn Opensubsonic server in Rust
    link
    fedilink
    English
    arrow-up
    13
    ·
    edit-2
    1 year ago

    Is Rust that much better than Go?

    IMHO, rust and go are two differents things. The reason I choose Rust is because it is fast and calling C code from rust is supported really well since Rust’s goal is to become a system language. Navidrome is just calling the ffmpeg binary. While in my project, I’ve compiled the neccessary parts of ffmpeg myself (thanks to vcpkg) and call the function directly from Rust. It leads to smaller and fully static final binary (because no ffmpeg bin) as well as faster transcoding time since we don’t have to wait for the ffmpeg binary to finish transcoding the whole file before load the result from the filesystem to the memory.

    Would it have been impossible to submit your changes to Navidrome as pull requests?

    You can see here. This is the biggest reason why I’ve decided to start my own implementation. Beside, I share my server with several friends so I want a mechanism to prevent mixing musics from different people.

    Does this import the Navidrome database?

    This could be a feature request in the future. I could add a python script to import users/songs/playlists/playcount/etc from Navidrome.