Compare commits

..

18 Commits

Author SHA1 Message Date
dimitris-c eaaac59ef4 Merge branch 'feature/mp4-restructure' of https://github.com/dimitris-c/AudioStreaming into feature/mp4-restructure 2024-04-01 15:33:09 +03:00
dimitris-c 413afb2ae1 Merge branch 'main' into feature/mp4-restructure 2024-04-01 15:33:07 +03:00
dimitris-c 6434886371 Merge branch 'main' into feature/mp4-restructure 2024-04-01 15:32:36 +03:00
dimitris-c 9cbe71d2b4 some refactoring 2024-04-01 15:32:19 +03:00
dimitris-c 2a587c2f8a fix an issue with seek 2024-03-20 13:59:05 +02:00
dimitris-c 421a50d591 nit 2024-03-14 23:09:40 +02:00
dimitris-c 31ee80fa8b better check for mp4, seekable and moov atom 2024-03-14 16:23:17 +02:00
dimitris-c 44acae2d17 handles case where we the stream is not seekable for an mp4 file 2024-03-14 14:22:13 +02:00
dimitris-c aba2336698 improvements 2024-03-14 13:42:33 +02:00
dimitris-c 8787f9b7b5 improvements 2024-03-13 19:58:16 +02:00
dimitris-c 678c0e159a runs swiftlint 2024-03-13 00:16:48 +02:00
dimitris-c 95142492cf nit 2024-03-13 00:09:11 +02:00
dimitris-c cf7c66fa9e nit 2024-03-13 00:04:47 +02:00
dimitris-c 458a59c497 nit 2024-03-13 00:03:29 +02:00
dimitris-c ee42a3bb12 some refactor and fixed seek for a restructured mp4 2024-03-13 00:00:28 +02:00
dimitris-c e2867ed343 Merge branch 'main' into feature/mp4-restructure 2024-03-10 22:41:17 +02:00
Dimitris C b91ed7cd89 Update AppCoordinator.swift 2024-03-06 00:28:31 +02:00
dimitris-c 214e58859e initial work for supporting non-optimised mp4 2024-03-05 18:36:04 +02:00
5 changed files with 4 additions and 7 deletions
Vendored
BIN
View File
Binary file not shown.
-3
View File
@@ -10,7 +10,6 @@ xcuserdata/
*.xccheckout
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
**/.DS_Store
build/
DerivedData/
*.moved-aside
@@ -89,5 +88,3 @@ fastlane/test_output
# https://github.com/johnno1962/injectionforxcode
iOSInjectionProject/
/.DS_Store
/AudioExample/AudioExample/.DS_Store
Binary file not shown.
+2 -2
View File
@@ -1,13 +1,13 @@
Pod::Spec.new do |s|
s.name = 'AudioStreaming'
s.version = '1.2.0'
s.version = '1.1.0'
s.license = 'MIT'
s.summary = 'An AudioPlayer/Streaming library for iOS written in Swift using AVAudioEngine.'
s.homepage = 'https://github.com/dimitris-c/AudioStreaming'
s.authors = { 'Dimitris C.' => 'dimmdesign@gmail.com' }
s.source = { :git => 'https://github.com/dimitris-c/AudioStreaming.git', :tag => s.version }
s.ios.deployment_target = '13.0'
s.ios.deployment_target = '12.0'
s.swift_versions = ['5.1', '5.2', '5.3']
+2 -2
View File
@@ -831,7 +831,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.1.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = com.decimal.AudioStreaming;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
@@ -862,7 +862,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.1.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = com.decimal.AudioStreaming;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";