{"id":16641973,"url":"https://github.com/artskydj/test-audio","last_synced_at":"2025-03-12T05:29:04.713Z","repository":{"id":31266471,"uuid":"34828201","full_name":"ArtskydJ/test-audio","owner":"ArtskydJ","description":":musical_score: A small collection of ogg, wav, and flac files, for testing!","archived":false,"fork":false,"pushed_at":"2016-02-05T00:22:37.000Z","size":5888,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-21T06:33:11.619Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"dollarshaveclub/postmate","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ArtskydJ.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}},"created_at":"2015-04-30T01:49:09.000Z","updated_at":"2023-09-12T13:19:03.000Z","dependencies_parsed_at":"2022-08-26T16:00:56.285Z","dependency_job_id":null,"html_url":"https://github.com/ArtskydJ/test-audio","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/ArtskydJ%2Ftest-audio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtskydJ%2Ftest-audio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtskydJ%2Ftest-audio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtskydJ%2Ftest-audio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArtskydJ","download_url":"https://codeload.github.com/ArtskydJ/test-audio/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243165133,"owners_count":20246720,"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":[],"created_at":"2024-10-12T07:48:27.012Z","updated_at":"2025-03-12T05:29:04.690Z","avatar_url":"https://github.com/ArtskydJ.png","language":"JavaScript","readme":"test-audio\n==========\n\n[![Build Status](https://travis-ci.org/ArtskydJ/test-audio.svg)](https://travis-ci.org/ArtskydJ/test-audio)\n\n\u003e A tiny collection of ogg, wav, flac, and mp3 files, for testing!\n\n# example\n\n```js\nvar testAudio = require('test-audio')()\nconsole.log(testAudio)\n```\n```js\n[ { name: '30047__corsica-s__drippy.flac',\n    bytes: 24686,\n    type: 'flac',\n    path: 'C:\\\\Users\\\\Michael\\\\Github\\\\test-audio\\\\audio\\\\30047__corsica-s__drippy.flac' },\n  { name: '50775__smcameron__drips2.ogg',\n    bytes: 67338,\n    type: 'ogg',\n    path: 'C:\\\\Users\\\\Michael\\\\Github\\\\test-audio\\\\audio\\\\50775__smcameron__drips2.ogg' },\n  { name: '75344__neotone__drip2.wav',\n    bytes: 36792,\n    type: 'wav',\n    path: 'C:\\\\Users\\\\Michael\\\\Github\\\\test-audio\\\\audio\\\\75344__neotone__drip2.wav' },\n  { name: '8000__cfork__cf-fx-bloibb.mp3',\n    bytes: 23302,\n    type: 'mp3',\n    path: 'C:\\\\Users\\\\Michael\\\\Github\\\\test-audio\\\\audio\\\\8000__cfork__cf-fx-bloibb.mp3' },\n  flac: { name: '30047__corsica-s__drippy.flac', // Alias for element [0]\n    bytes: 24686,\n    type: 'flac',\n    path: 'C:\\\\Users\\\\Michael\\\\Github\\\\test-audio\\\\audio\\\\30047__corsica-s__drippy.flac' },\n  ogg: { name: '50775__smcameron__drips2.ogg', // Alias for element [1]\n    bytes: 67338,\n    type: 'ogg',\n    path: 'C:\\\\Users\\\\Michael\\\\Github\\\\test-audio\\\\audio\\\\50775__smcameron__drips2.ogg' },\n  wav: { name: '75344__neotone__drip2.wav', // Alias for element [2]\n    bytes: 36792,\n    type: 'wav',\n    path: 'C:\\\\Users\\\\Michael\\\\Github\\\\test-audio\\\\audio\\\\75344__neotone__drip2.wav' },\n  mp3: { name: '8000__cfork__cf-fx-bloibb.mp3', // Alias for element [3]\n    bytes: 23302,\n    type: 'mp3',\n    path: 'C:\\\\Users\\\\Michael\\\\Github\\\\test-audio\\\\audio\\\\8000__cfork__cf-fx-bloibb.mp3' } ]\n```\n\n# api\n\n```js\nvar getTestAudio = require('test-audio')\n```\n\n# `var files = getTestAudio()`\n\n`files` is an array of objects. Each object represents a test audio file, and has the following properties:\n\n- `name` is the file name, e.g. `'test_4.wav'`\n- `bytes` is the size of the file in bytes, e.g. `23868`\n- `type` is the extension of the file, e.g. `'wav'`\n- `path` is the absolute path of the file\n\nThere are also properties on the array, corresponding to the type. E.g. `files.mp3` is the same as `files[3]`.\n\n# credits\n\nThe sound files and album image are public domain/licensed for commercial reuse.\n\n- [cf_FD_bloibb.mp3](http://www.freesound.org/people/cfork/sounds/8000/)\n- [drippy.flac](http://www.freesound.org/people/Corsica_S/sounds/30047/)\n- [drips2.ogg](http://www.freesound.org/people/smcameron/sounds/50775/)\n- [drip2.wav](http://www.freesound.org/people/Neotone/sounds/75344/)\n- [album.jpg](http://orig15.deviantart.net/bece/f/2014/311/5/7/buster_s_adventures_4___scary_encounter_by_busterthefox-d85numc.jpg)\n\n# install\n\nWith [npm](http://nodejs.org/download) do:\n\n```\nnpm install test-audio\n```\n\n# license\n\n[MIT](http://opensource.org/licenses/MIT)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartskydj%2Ftest-audio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fartskydj%2Ftest-audio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartskydj%2Ftest-audio/lists"}