github_39399184
码龄8年
求更新 关注
提问 私信
  • 博客:1,429
    1,429
    总访问量
  • 5
    原创
  • 0
    粉丝
  • 15
    关注
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:重庆市
加入CSDN时间: 2017-07-04
博客简介:

github_39399184的博客

查看详细资料
个人成就
  • 获得0次点赞
  • 内容获得1次评论
  • 获得1次收藏
  • 博客总排名579,276名
创作历程
  • 5篇
    2021年
成就勋章
TA的专栏
  • AVPlayer
    1篇

TA关注的专栏 0

TA关注的收藏夹 0

TA关注的社区 1

TA参与的活动 0

创作活动更多

新星杯·14天创作挑战营·第13期

这是一个以写作博客为目的的创作活动,旨在鼓励大学生博主们挖掘自己的创作潜能,展现自己的写作才华。如果你是一位热爱写作的、想要展现自己创作才华的小伙伴,那么,快来参加吧!我们一起发掘写作的魅力,书写出属于我们的故事。我们诚挚邀请你们参加为期14天的创作挑战赛!注: 1、参赛者可以进入活动群进行交流、互相鼓励与支持(开卷),虚竹哥会分享创作心得和涨粉心得,答疑及活动群请见:https://bbs.csdn.net/topics/619781944 【进活动群,得奖概率会更大,因为有辅导】 2、文章质量分查询:https://www.csdn.net/qc

90人参与 去参加
  • 最近
  • 文章
  • 专栏
  • 代码仓
  • 资源
  • 收藏
  • 关注/订阅/互动
更多
  • 最近

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

Metal入门一 旋转的六面体

上代码自己悟吧这是metal 着色器语言如下#include <metal_stdlib>using namespace metal;struct Vertex { float4 position [[position]]; float4 color;};vertex Vertex vertex_shader(constant Vertex *vertices [[buffer(0)]],uint vid [[vertex_id]]){ retur
原创
博文更新于 2021.06.10 ·
307 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

BeautyCamera.zip

发布资源 2021.06.07 ·
zip

Metal入门一 三角形

判断设备是否支持metalguard let device = MTLCreateSystemDefaultDevice() else { label.text = "Your GPU does not support Metal!" return }label.text = "Your system has the following GPU(s):
" + "\(device.name)
"创建 MTKView 的子类MetalViewStory
原创
博文更新于 2021.06.07 ·
153 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

iOS AVPlayer 音乐播放器使用注意事项

AVPlayer关于音乐播放总时长的获取关于音乐播放总时长的获取官方解说如下/** @property duration @abstract Indicates the duration of the item, not considering either its forwardPlaybackEndTime or reversePlaybackEndTime. @discussion This property is observable.
原创
博文更新于 2021.06.05 ·
399 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

FFmpeg iOS

FFmpeg iOShttps://github.com/tanersener/mobile-ffmpeg/releases/tag/v4.4项目集成pod 'mobile-ffmpeg-full-gpl', '~> 4.4'简单使用import mobileffmpeg多图合成视频例子func outVideo(path1:String,outPath:String) { try? FileManager.default.removeItem(atPath: o
原创
博文更新于 2021.06.04 ·
398 阅读 ·
0 点赞 ·
1 评论 ·
1 收藏

2021-06-04

FFmepg 去除.mp3 的人声ffmpeg -i file.mp3 -af pan="stereo|c0=c0|c1=-1*c1" -ac 1 karaoke.mp3
原创
博文更新于 2021.06.04 ·
172 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏