A tool which can be used to search and play YouTube music!
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

readme.md 1004 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Spotitube
  2. Basically, a tool to listen to music using YouTube search results.
  3. # Instalation
  4. FOR ARCH USERS ONLY STEP (SKIP IF OTHER OS):
  5. ```shell
  6. chmod +x dependencies.sh
  7. ./dependencies.sh
  8. ```
  9. This will install the required dependencies (skip next step)
  10. # Prerequisites
  11. The dependencies.sh already handles the dependencies, but if you want to do it manually, then here you go.
  12. This app requires python3, pip3, and youtube-search python module to function properly:
  13. Arch:
  14. ```shell
  15. sudo pacman -S python3 python-pip
  16. pip install youtube-search
  17. ```
  18. Debian/ubuntu:
  19. ```shell
  20. sudo apt install python3 pip3
  21. pip3 install youtube-search
  22. ```
  23. # Usage
  24. All you have to do is launch spotitube.sh and give it a string argument with the song name!
  25. ```shell
  26. ./spotitube.sh "Song name"
  27. ```
  28. If you want to get a specific index of a result, just type that index as a second argument:
  29. ```shell
  30. ./spotitube.sh "Song name" 3
  31. ```
  32. This will result in:
  33. ```
  34. Searching for result #3 in Song name...
  35. ```
  36. Enjoy your music!