Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/el-hoshino/hifumi
A loop-point loop-able audio player class for iOS
https://github.com/el-hoshino/hifumi
Last synced: about 1 month ago
JSON representation
A loop-point loop-able audio player class for iOS
- Host: GitHub
- URL: https://github.com/el-hoshino/hifumi
- Owner: el-hoshino
- License: mit
- Created: 2017-02-28T12:55:47.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-01-14T14:48:18.000Z (about 1 year ago)
- Last Synced: 2024-12-07T18:45:18.539Z (about 2 months ago)
- Language: Swift
- Size: 215 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hifumi
A loop-point loop-able audio player class for iOS## Usage
```swift
import Hifumi
``````swift
let url = Bundle.main.url(forResource: <#filename#>, withExtension: <#extension#>)!
let player = try! HifumiPlayer(url: url, playMode: .loop(range: <#loopStartingPoint#>...))
player.play()```
## Installation
Use SwiftPM to install Hifumi
```swift
dependencies: [
.package(url: "https://github.com/el-hoshino/Hifumi", from: "1.0.2"),
]
```