mirror of
https://github.com/oonyeje/Get-Hip.git
synced 2025-12-25 11:47:41 +00:00
22 lines
405 B
Objective-C
Executable File
22 lines
405 B
Objective-C
Executable File
//
|
|
// TDAudioOutputStreamer.h
|
|
// TDAudioStreamer
|
|
//
|
|
// Created by Tony DiPasquale on 11/14/13.
|
|
// Copyright (c) 2013 Tony DiPasquale. The MIT License (MIT).
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class AVURLAsset;
|
|
|
|
@interface TDAudioOutputStreamer : NSObject
|
|
|
|
- (instancetype)initWithOutputStream:(NSOutputStream *)stream;
|
|
|
|
- (void)streamAudioFromURL:(NSURL *)url;
|
|
- (void)start;
|
|
- (void)stop;
|
|
|
|
@end
|