没有用oc正版怎么降噪?其他降噪软件。

《C4D百科全书》>>《C4D的十万个为什么》

有简单的初级知识,也有深度经验分享。


问题:

没有用oc正版怎么降噪?


答案:

直接去书生网站(c4dsky.com)搜索降噪,下载安装最新版即可,每个软件里面都是安装方法,按照说明安装下就行了。(个人常用的所有工作软件基本都是在书生网站下载安装了,也是国内更新软件版本最快的网站。)

image.png

 

安装并汉化后,打开是这样。

image.png

 

下面看下对比:

oc渲染的原图,128采样。

1_Main_0000.png

 

oc降噪后的图(默认的降噪设置)

1_DeMain_0000.png

 

使用Topaz DeNoise AI软件

浏览图片,加载一张图片后会自动ai降噪,打开上面oc渲染的原图,可以直接自动处理,也可以尝试修改参数,参数很简单就几个数值修改看变化就行了。

image.png

image.png

 

1_Main_0000-DeNoiseAI-denoise (2).png

 

个人尝试的感觉就是,有些情况下可以媲美oc的降噪,有些时候就不如oc的降噪,比如对亮斑的处理等。

 

但是对于制作单帧效果图,并且没有正版oc的用户来说,这个软件很强很方便。

 


如果你有其他答案或者问题,欢迎留言补充,万分感谢!


更多相关问题及答案可在下方链接搜索查看。

kuqijun.com/q-a


《C4D的十万个为什么》首发于 公众号:苦七君

旨在收集全网各种和C4D相关软件的知识问答,方便学习者搜索查看。

参与制作者:昵称(微信号)

苦七君(kuqijun666)、丽丽酱(lilij-ang)、

如果你也想参与进来,欢迎联系苦七微信/QQ:766057766


做这个对学习C4D帮助很大,也会有些许报酬~


苦七微信学习群,只学习不闲聊,需要进的私信苦七“进学习群”,

提问截图截全屏发大图,提问截图截全屏发大图,提问截图截全屏发大图。

苦七微信/QQ:766057766

 

 你在 群里的 每个 提问, 都会被 认真 回答

优质问题,会有一元红包奖励

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
当然可以,以下是 Objective-C 版本的代码实现: 1. 在 info.plist 文件中添加蓝牙权限: - NSBluetoothPeripheralUsageDescription:描述了应用程序需要使用蓝牙的原因。 - NSMicrophoneUsageDescription:描述了应用程序需要使用麦克风的原因。 2. 创建一个 AVAudioSession 实例并设置它的类别为 AVAudioSessionCategoryRecord: ``` AVAudioSession *audioSession = [AVAudioSession sharedInstance]; NSError *error; BOOL success = [audioSession setCategory:AVAudioSessionCategoryRecord error:&error]; if (!success) { NSLog(@"Failed to set audio session category: %@", error.localizedDescription); } ``` 3. 设置 AVAudioSession 实例的输入源和输出源: ``` NSArray<AVAudioSessionPortDescription *> *bluetoothInputs = [audioSession.availableInputs filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(AVAudioSessionPortDescription * _Nullable input, NSDictionary<NSString *,id> * _Nullable bindings) { return input.portType == AVAudioSessionPortBluetoothHFP || input.portType == AVAudioSessionPortBluetoothA2DP; }]]; if (bluetoothInputs.count > 0) { NSError *error; success = [audioSession setPreferredInput:bluetoothInputs.firstObject error:&error]; if (!success) { NSLog(@"Failed to set preferred input: %@", error.localizedDescription); } } AVAudioSessionPortDescription *currentOutput = audioSession.currentRoute.outputs.firstObject; success = [audioSession setPreferredOutput:currentOutput error:&error]; if (!success) { NSLog(@"Failed to set preferred output: %@", error.localizedDescription); } ``` 4. 初始化 AVAudioRecorder 对象并开始录音: ``` NSURL *audioURL = // Specify the URL where you want to save the recorded audio. NSDictionary *audioSettings = @{AVFormatIDKey: @(kAudioFormatMPEG4AAC), AVSampleRateKey: @(44100), AVNumberOfChannelsKey: @(2)}; NSError *error; AVAudioRecorder *audioRecorder = [[AVAudioRecorder alloc] initWithURL:audioURL settings:audioSettings error:&error]; if (!audioRecorder) { NSLog(@"Failed to initialize audio recorder: %@", error.localizedDescription); } else { [audioRecorder prepareToRecord]; [audioRecorder record]; } ``` 这样就可以从蓝牙设备的麦克风录制音频了。希望对您有所帮助!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

苦七君

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值