MetaPetal / GPUImage3 - Implement Video Filters, More Image FIlters #701
gintechsystems
started this conversation in
Vote for Issue to faster implement.
Replies: 2 comments 8 replies
-
@gintechsystems thanks!) However filters should be customizable. User should have an option to enable/disable any of them. To make postprocessing videos the functional should be placed in one place. It needs refactoring. If you want, you can start doing that. Please use solid architecture, or just separate classes by logic. And finally - make PRs as small as possible. You can make a lot of them. |
Beta Was this translation helpful? Give feedback.
7 replies
-
In app you can use custom filters. public typealias FilterApplierType = ((_ image: CIImage) -> CIImage?)
public struct YPFilter {
var name = ""
var applier: FilterApplierType?
public init(name: String, coreImageFilterName: String) {
self.name = name
self.applier = YPFilter.coreImageFilter(name: coreImageFilterName)
}
public init(name: String, applier: FilterApplierType?) {
self.name = name
self.applier = applier
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey guys,
I was thinking of implementing more filters along with the ability to have post processing filters for videos. Thoughts on this? Any reason not to do? I have heard in the past you cannot use instagram filters as they are copyrighted...not sure if possible or even true.
I would like to start adding more filters though outside of the default Apple provides. gintechsystems has done a few PRs to fix other problems in the past (audio / mp4 bugs) with this library and we continue to use it in all projects. It is the best picker out there that is open source!
@NikKovIos @s4cha
Thanks
gintechsystems
Beta Was this translation helpful? Give feedback.
All reactions