Swiftpack.co - crashoverride777/swifty-music as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by crashoverride777.
crashoverride777/swifty-music v4.1.5
A Swift library to handle music playback using AVFoundation. This library is deprecated and no longer supported.
⭐️ 8
🕓 6 days ago
iOS macOS tvOS
.package(url: "https://github.com/crashoverride777/swifty-music.git", from: "v4.1.5")

Swift 5.6 Platform SPM supported CocoaPods Compatible

SwiftyMusic

A Swift library to handle music playback using AVFoundation.

Deprecation

This library is deprecated and no longer supported.

Requirements

  • iOS 12.0+
  • Swift 5.6+

Installation

Swift Package Manager

The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.

To add a swift package to your project simple open your project in xCode and click File > Swift Packages > Add Package Dependency. Than enter https://github.com/crashoverride777/swifty-music.git as the repository URL and finish the setup wizard.

Alternatively if you have a Swift package that requires adding SwiftyMusic as a dependency it is as easy as adding it to the dependencies value of your Package.swift.

dependencies: [
    .package(url: "https://github.com/crashoverride777/swifty-music.git", from: "4.0.0")
]

Cocoa Pods

CocoaPods is a dependency manager for Cocoa projects. Simply install the pod by adding the following line to your pod file

pod 'SwiftyMusic'

Manually

Alternatively you can drag the Sources folder and its containing files into your project.

Usage

  • Add your music tracks to your project.

SwiftyMusic supports all file formats supported by AVFoundation.

  • Add the import statements to your .swift file(s) if you installed via cocoa pods or swift package manager.
import SwiftyMusic 
  • Anywhere in your project create an extension of SwiftyMusicFileName to add the file names of the music tracks that you will use. These must be the same as the actual filename of the music file.
extension SwiftyMusicFileName {
    static let menu = SwiftyMusicFileName("MenuMusic.mp3")
    static let game = SwiftyMusicFileName("GameMusic.mp3")
    
    static var all: [SwiftyMusicFileName] = [.menu, .game]
}
  • Than setup the helper as soon as your app launches.
SwiftyMusic.shared.setup(withFileNames: SwiftyMusicFileName.all)
  • To play music call the play method with the corresponding Music URL you have created above. This will automatically pause any previously playing music
SwiftyMusic.shared.play(.menu)
SwiftyMusic.shared.play(.game)
  • Pause music
SwiftyMusic.shared.pause()
  • Resume paused music
SwiftyMusic.shared.resume()
  • Adjust volume
SwiftyMusic.shared.setVolume(to: 0.5)
  • Stop and reset all music players
SwiftyMusic.shared.reset()
  • Mute
SwiftyMusic.shared.setMuted(true)

if SwiftyMusic.shared.isMuted {
    // music is muted, show unmute button
} else {
    // music not muted, show mute button
}

Testing

To test your classes using SwiftyMusic you can inject the SwiftyMusicType protocol

class SomeClass {
    private let swiftyMusic: SwiftyMusicType
    
    init(swiftyMusic: SwiftyMusicType = SwiftyMusic.shared) {
        self.swiftyMusic = swiftyMusic
    }
}

and than provide a mock implementation when testing

class MockSwiftyMusic { }
extension MockSwiftyMusic: SwiftyMusicType { ... }

class SomeClassTests {
    func test() {
        let sut = SomeClass(swiftyMusic: MockSwiftyMusic())
    }
}

License

SwiftyMusic is released under the MIT license. See LICENSE for details.

GitHub

link
Stars: 8
Last commit: 6 days ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

iOS/tvOS min deployment target
1 year ago
  • Set iOS/tvOS min deployment target to 12.0

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics