{"id":18611004,"url":"https://github.com/beangreen247/tinmusic","last_synced_at":"2026-05-01T04:37:16.592Z","repository":{"id":153757216,"uuid":"388743106","full_name":"BeanGreen247/tinmusic","owner":"BeanGreen247","description":"a small music player","archived":false,"fork":false,"pushed_at":"2021-07-25T06:30:53.000Z","size":53,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-15T08:32:14.539Z","etag":null,"topics":["247","bean","beangreen247","c","editor","fast","gcc","make","music","open","player","program","programming","simple","source","terminal","tin","tinmusic","tty"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BeanGreen247.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-07-23T09:10:42.000Z","updated_at":"2021-07-25T06:30:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"dfb1cbf0-92ad-460d-a03b-1d92e64e535c","html_url":"https://github.com/BeanGreen247/tinmusic","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeanGreen247%2Ftinmusic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeanGreen247%2Ftinmusic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeanGreen247%2Ftinmusic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeanGreen247%2Ftinmusic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BeanGreen247","download_url":"https://codeload.github.com/BeanGreen247/tinmusic/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239400625,"owners_count":19632055,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["247","bean","beangreen247","c","editor","fast","gcc","make","music","open","player","program","programming","simple","source","terminal","tin","tinmusic","tty"],"created_at":"2024-11-07T03:12:22.702Z","updated_at":"2025-11-02T21:30:31.201Z","avatar_url":"https://github.com/BeanGreen247.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"tinmusic\n===\n\n|name|version|state|\n|:---:|:---:|:---:|\n|tinmusic|devduild_alpha_0.0.1|testing|\n\nStates explained\n\n* stable - fully working release\n* unstable - somewhat working, with a few bugs\n* testing - developing and testing new features\n\nScreen\n\n![](screen.png)\n\nDependencies\n```bash\nsudo apt install aplay\n```\n\nUsage: tinmusic `\u003cfilename\u003e`\n\nFeatures\n\nCurrent\n* play and pause\n\nPlanned\n* volume control\n\nSupported files (more will not be added)\n* wav\n\nKeys:\n\n* CTRL-S: Save\n* CTRL-Q: Quit\n* CTRL-F: Find string in file (ESC to exit search, arrows to navigate)\n\nTo install\n```bash\nsudo bash install.sh\n```\nTo uninstall\n```bash\nsudo bash uninstall.sh\n```\n### Known bugs\n* files with special characters cause the app to crash\n\n### filename changing scripts\nGo into the directory with your music files and run one of the following depending on the file format. It will convert the files to WAVs in a directory called Converted.\n\nmp3\n```bash\nbash ffmpeg_mp3_to_wav.sh\n```\n```bash\nmkdir Converted\nfor f in *.mp3; do ffmpeg -i \"$f\" -acodec pcm_s16le -ac 2 -ar 44100 \"${f%}.wav\"; done\nmv *.wav Converted/\ncd Converted/\nfor file in ./*.wav\ndo\n  infile=`echo \"${file:2}\"|sed  \\\n         -e 's|\"\\\"|\"\\\\\"|g' \\\n         -e 's| |\\ |g' -e 's|!|\\!|g' \\\n         -e 's|@|\\@|g' -e 's|*|\\*|g' \\\n         -e 's|\u0026|\\\u0026|g' -e 's|]|\\]|g' \\\n         -e 's|}|\\}|g' -e 's|\"|\\\"|g' \\\n         -e 's|,|\\,|g' -e 's|?|\\?|g' \\\n         -e 's|=|\\=|g'  `\n  outfile=`echo \"${file:2}\"|sed -e 's|[^A-Za-z0-9._-]|_|g'`\n  mv \"$infile\" ${outfile} \u0026\ndone\ncd ..\n```\nflac\n```bash\nbash ffmpeg_flac_to_wav.sh\n```\n```bash\nmkdir Converted\nfor f in *.flac; do ffmpeg -i \"$f\" -acodec pcm_s16le -ac 2 -ar 44100 \"${f%}.wav\"; done\nmv *.wav Converted/\ncd Converted/\nfor file in ./*.wav\ndo\n  infile=`echo \"${file:2}\"|sed  \\\n         -e 's|\"\\\"|\"\\\\\"|g' \\\n         -e 's| |\\ |g' -e 's|!|\\!|g' \\\n         -e 's|@|\\@|g' -e 's|*|\\*|g' \\\n         -e 's|\u0026|\\\u0026|g' -e 's|]|\\]|g' \\\n         -e 's|}|\\}|g' -e 's|\"|\\\"|g' \\\n         -e 's|,|\\,|g' -e 's|?|\\?|g' \\\n         -e 's|=|\\=|g'  `\n  outfile=`echo \"${file:2}\"|sed -e 's|[^A-Za-z0-9._-]|_|g'`\n  mv \"$infile\" ${outfile} \u0026\ndone\ncd ..\n```\naac\n```bash\nbash ffmpeg_aac_to_wav.sh\n```\n```bash\nmkdir Converted\nfor f in *.aac; do ffmpeg -i \"$f\" -acodec pcm_s16le -ac 2 -ar 44100 \"${f%}.wav\"; done\nmv *.wav Converted/\ncd Converted/\nfor file in ./*.wav\ndo\n  infile=`echo \"${file:2}\"|sed  \\\n         -e 's|\"\\\"|\"\\\\\"|g' \\\n         -e 's| |\\ |g' -e 's|!|\\!|g' \\\n         -e 's|@|\\@|g' -e 's|*|\\*|g' \\\n         -e 's|\u0026|\\\u0026|g' -e 's|]|\\]|g' \\\n         -e 's|}|\\}|g' -e 's|\"|\\\"|g' \\\n         -e 's|,|\\,|g' -e 's|?|\\?|g' \\\n         -e 's|=|\\=|g'  `\n  outfile=`echo \"${file:2}\"|sed -e 's|[^A-Za-z0-9._-]|_|g'`\n  mv \"$infile\" ${outfile} \u0026\ndone\ncd ..\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeangreen247%2Ftinmusic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeangreen247%2Ftinmusic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeangreen247%2Ftinmusic/lists"}