I download my music videos and shuffle them in mpv. Sometimes i want a certain song so i want like a hotkey to open ~/Music\ Videos/ and search for a file. I used rofi file browser extended from the aur but i cant get it to compile on debian

all 17 comments

sorted by: hot top controversial new old
[+] 12 points 2 years ago* (last edited 10 months ago) (1 child)
  • [–] 6 points 2 years ago

    Fsearch, Recommended by Linux Format Magazine in their November 2023 series.

  • source
  • [–] 3 points 2 years ago* (last edited 2 years ago)
    #!/bin/bash
    
    video_directory="~/Music Videos/ "
    
    while true; do
      read -p "Enter music video: " prompt
    
      find "$video_directory" -type f -name "*$prompt*" -exec umpv  {} \;
    done
    

    umpv:

    https://github.com/mpv-player/mpv/blob/master/TOOLS/umpv

  • source
  • [–] 1 point 2 years ago* (2 children)

    I know a few terminal-based file managers but I don't think those will help solve your problem. I recommend you to somehow port ( I don't see why rofi doesn't work on your debian tho ) rofi onto debian so that you can keep on your workflow.

  • source
  • hideshow 4 child comments
  • [–] [S] 0 points 2 years ago (1 child)
  • [–] 4 points 2 years ago* (last edited 2 years ago) (1 child)

    I'm completely not sure, but did you clone the repository with recursive flag?

    It's presumably related to your includePath or something.

    P.S. I think I've figured out:

    You need to have rofi ^1.6.1 installed on your system.

    https://github.com/marvinkreis/rofi-file-browser-extended#dependencies

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 2 years ago (1 child)
  • [–] [S] 1 point 2 years ago (1 child)

    They remove the shuffle playlist

  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 2 years ago (1 child)

    Shuffle playlist as a shortcut or cli-argument? Shortcuts can be customized in inputs config.

    Also there are three in the list (only searching for „browse“): blackbox, file-browser, simple-loader

    file-browser (or mpv-file-browser) can be customized for shortcuts. blackbox and simple-loader i could not find if they can be.

  • source
  • parent
  • hideshow 2 child comments
  • [–] [S] 1 point 2 years ago (1 child)
  • [–] 1 point 2 years ago (1 child)

    Do you launch with shuffle, some songs shuffle, add new song via browser and it plays the new next and not later? Or does it break the playlist? If the latter, maybe create an issue with the browser, sounds like a bug.

  • source
  • parent
  • hideshow 2 child comments