-y overwrite without asking
-r frame rate
-vf eq=1:0:1.1:1:1:1:1:1 change colors. contrast : brightness : saturation : gamma : gamma r : gamma g : gamma b : weight
-vf scale=width:height scale/resize. -1 will leave preserved ratio, for instance 320:-1 will resize to 320 in width and keep ratio
-ss seek to position
-t duration, trim to a certain length
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // URLRequest+cURL.swift | |
| // | |
| // Created by Dmitry Gulyagin on 19/02/2024. | |
| // | |
| import struct Foundation.URLRequest | |
| public extension URLRequest { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // View+WindowGeometryPreferences.swift | |
| // | |
| // Created by Drew Olbrich on 1/30/24. | |
| // Copyright © 2024 Lunar Skydiving LLC. All rights reserved. | |
| // | |
| // MIT License | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| final class Sample: NSObject { | |
| @objc dynamic var name: String = "" | |
| } | |
| class MyObj: NSObject { | |
| @objc dynamic var test: String = "" | |
| } | |
| extension NSObjectProtocol where Self: NSObject { |