first commit
Some checks failed
/ buid (push) Has been cancelled

This commit is contained in:
2026-04-16 14:48:09 +07:00
commit 4b968a3347
5625 changed files with 1685474 additions and 0 deletions

26
Demo/Podfile Normal file
View File

@ -0,0 +1,26 @@
use_frameworks! :linkage => :static
workspace 'Demo.xcworkspace'
install! 'cocoapods', :generate_multiple_pod_projects => true
def common
pod 'Libass', :path => '../'
pod 'Libmpv', :path => '../'
pod 'FFmpegKit', :path => '../'
# pod 'Libass',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
# pod 'FFmpegKit',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
# pod 'Libmpv',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
end
target 'iOS' do
project 'Demo.xcodeproj'
platform :ios, 13.0
common
end
target 'macOS' do
project 'Demo.xcodeproj'
platform :osx, 10.15
common
end
target 'tvOS' do
project 'Demo.xcodeproj'
platform :tvos, 13.0
common
end