Home

iOS 通知

iOS 通知 iOS有两套通知API, iOS10前使用UILocalNotification, 以后使用UNUserNotificationCenter. UILocalNotification, iOS8以后应用需要registerUserNotificationSettings:函数注册通知. if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) { UIUserNotificationType type = UIUserNotificationTypeAlert | UIUserNotificatio...

Read more

iOS 性能

iOS 性能 Reference 性能优化检测Instruments-time profile的使用

Read more

multimedia

multimedia 主流多媒体库vlc, gstreamer, ffmage(libav) vlc vlc代码, 使用GPL-2.0, LGPL-2.1 licenses gstreamer gstreamer代码, 使用GPL-2.0 FFmpeg FFmpeg代码 libav oneapi-src/oneVPL blog 零声音视频开发 移动端进行直播和音视频开发 移动应用开发:熟悉移动应用开发平台,例如Android(Java/Kotlin)或iOS(Objective-C/Swift),以便能够创建直播和音视频应用程序。 视频编解码:了解视频编解码的基本原理和常见的视频编码标准,如H.264、H.265(HEVC)等。这将帮助您理解视...

Read more

FFmpeg

FFmpeg ./libavfilter/allfilters.c(ffmpeg -filters) - 声明支持的过滤器 ./libavdevice/alldevices.c(ffmpeg -devices) - 声明支持的平台设备 ./libavformat/allformats.c(ffmpeg -formats) - 声明支持的媒体格式 ./libavcodec/allcodecs.c(ffmpeg -codecs) - 声明支持的编解码格式 输入和输出设备 - FFmpeg Devices Documentation ffmpeg -f avfoundation -list_devices true -i “” 默认音频采样参数 ff...

Read more

iOS 混合开发

iOS 混合开发 Reference 在UIKit中使用SwiftUI 在SwiftUI项目中使用UIKit 在Swift项目中使用OC 在OC项目中使用Swift

Read more

Linux Redirection

Linux Redirection | type | symbol | num | remark | |--------|--------|-----|--------------| | output | > | 1 | overwritten | | output | >> | 1 | add more | | input | < | 0 | | | errout | > | 2 | | | errout | >> | 2 | | ls Documents ABC&g...

Read more