mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
72 lines
2 KiB
Swift
72 lines
2 KiB
Swift
//
|
|
// PlayerAudio.swift
|
|
// linphone
|
|
//
|
|
// Created by Benoît Martins on 27/02/2023.
|
|
//
|
|
|
|
import Foundation
|
|
import linphonesw
|
|
|
|
|
|
class AudioPlayer: ControlsViewModel {
|
|
static let sharedModel = AudioPlayer()
|
|
|
|
static var linphonePlayer : Player? = nil
|
|
|
|
var fileChanged = MutableLiveData<String>()
|
|
|
|
static func getSharedPlayer() -> Player?{
|
|
return linphonePlayer
|
|
}
|
|
|
|
static func initSharedPlayer(){
|
|
Log.i("[Voice Message] Creating shared player")
|
|
|
|
let core = Core.getSwiftObject(cObject: LinphoneManager.getLc())
|
|
do{
|
|
if linphonePlayer?.userData == nil {
|
|
linphonePlayer = try core.createLocalPlayer(soundCardName: CallManager.instance().getSpeakerSoundCard(), videoDisplayName: nil, windowId: nil)
|
|
}
|
|
}catch{
|
|
Log.e(error.localizedDescription)
|
|
}
|
|
}
|
|
|
|
static func startSharedPlayer(_ path: String?) {
|
|
Log.i("[Voice Message] Starting shared player path = \(String(describing: path))")
|
|
if ((linphonePlayer!.userData) != nil) {
|
|
Log.i("[Voice Message] a play was requested (\(String(describing: path)), but there is already one going (\(String(describing: linphonePlayer?.userData))")
|
|
let userInfo = [
|
|
"path": linphonePlayer!.userData
|
|
]
|
|
NotificationCenter.default.post(name: NSNotification.Name(rawValue: "LinphoneVoiceMessagePlayerEOF"), object: nil, userInfo: userInfo as [AnyHashable : Any])
|
|
}
|
|
CallManager.instance().changeRouteToSpeaker()
|
|
do{
|
|
try linphonePlayer?.open(filename: path!)
|
|
try linphonePlayer?.start()
|
|
}catch{
|
|
Log.e(error.localizedDescription)
|
|
}
|
|
}
|
|
|
|
static func cancelVoiceRecordingVM(_ voiceRecorder: Recorder?) {
|
|
voiceRecorder?.close()
|
|
if let recordingFile = voiceRecorder?.file {
|
|
AppManager.removeFile(file: String(utf8String: recordingFile)!)
|
|
}
|
|
}
|
|
|
|
static func stopSharedPlayer() {
|
|
Log.i("[Voice Message] Stopping shared player path = \(String(describing: linphonePlayer?.userData))")
|
|
do{
|
|
try linphonePlayer?.pause()
|
|
try linphonePlayer?.seek(timeMs: 0)
|
|
//linphonePlayer?.close()
|
|
linphonePlayer?.userData = nil
|
|
}catch{
|
|
Log.e(error.localizedDescription)
|
|
}
|
|
}
|
|
}
|