Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Google Drive Ocamlfuse | 4,870 | 4 months ago | 181 | mit | OCaml | |||||
FUSE filesystem over Google Drive | ||||||||||
Gcsf | 2,203 | 2 years ago | 21 | April 12, 2020 | 32 | mit | Rust | |||
a FUSE file system based on Google Drive | ||||||||||
Laravel Google Cloud Storage | 485 | 33 | 16 | a year ago | 15 | September 22, 2020 | 39 | mit | PHP | |
A Google Cloud Storage filesystem for Laravel | ||||||||||
Fuse Google Drive | 271 | 7 years ago | 18 | gpl-2.0 | C | |||||
A fuse filesystem wrapper for Google Drive. | ||||||||||
Gmusicfs | 158 | 7 years ago | 33 | Python | ||||||
A FUSE filesystem for Google Music | ||||||||||
Spreadsheetfs | 126 | 3 years ago | 1 | mit | Python | |||||
Use Google Sheets as a Filesystem to get Unlimited Free Cloud Storage | ||||||||||
Storage File Transfer Json Python | 80 | 6 years ago | 2 | apache-2.0 | Python | |||||
Uploads and downloads files between Google Cloud Storage and the local filesystem using the Google Python Client Library. | ||||||||||
Node Gdrive Fuse | 61 | 5 years ago | 16 | JavaScript | ||||||
This is a simple filesystem written in NodeJS to mount Google Drive as a local drive. | ||||||||||
Java Storage Nio | 55 | 37 | 31 | 2 days ago | 181 | April 19, 2022 | 9 | apache-2.0 | Java | |
Lrkfm | 47 | 23 days ago | 12 | mit | Java | |||||
Awesome, (ad) free, open source file manager for Android |
This is a FUSE filesystem for Google Music written in Python. It utilizes the unofficial gmusicapi written by Simon Weber.
artists/<name of artist>/<albums>/<tracks>
.cover.jpg
in the album directory.cp
directly.)mplayer
or another simple music player.GMusicFS doesn't implement any caching. Copying a file should always work, because latency doesn't matter, but if you're streaming the music, you may want to turn on your player's caching system (eg. mplayer -cache 200.) You may notice a few blips in the sound during the first few seconds of each song without it. If you're on a low latency connection this might not affect you.
Installing GMusicFS requires two dependencies which currently cannot be resolved automatically:
Neither of these are able to be installed via setuptools at the current time. fusepy due to this bug and we currently require the development version of gmusicapi which is not on PyPI yet. No worries, we can install the dependencies manually:
pip install https://github.com/terencehonles/fusepy/tarball/master
pip install https://github.com/simon-weber/Unofficial-Google-Music-API/tarball/develop
Then install GMusicFS:
pip install https://github.com/EnigmaCurry/GMusicFS/tarball/master
Create a config file in ~/.gmusicfs
:
[credentials]
username = [email protected]
password = your_password
deviceId = your_mobile_id
If you use 2-factor authentication, make sure you use an application specific password.
To find the device id, you may run gmusicfs with the parameter --deviceid after providing login informations.
gmusicfs --deviceid
Secure the configuration file so that no one else can read it (GMusicFS will complain about this if you forget):
chmod 600 ~/.gmusicfs
usage: gmusicfs [-h] [-f] [-v] [-vv] [-t] mountpoint
GMusicFS
positional arguments:
mountpoint The location to mount to
optional arguments:
-h, --help show this help message and exit
-f, --foreground Don't daemonize, run in the foreground.
-v, --verbose Be a little verbose
-vv, --veryverbose Be very verbose
-t, --truefilesize Report true filesizes (slower directory reads)
--nolibrary Don't scan the library at launch
--deviceid Get the mobile device ids bounded to your account
Mount your music:
mkdir -p $HOME/google_music
gmusicfs $HOME/google_music
Unmount your music:
fusermount -u $HOME/google_music