Dmitry Starkov

Results 18 comments of Dmitry Starkov

```swift import SwiftUI import UIKit import Foundation import paper_onboarding // https://github.com/Ramotion/paper-onboarding final class PaperOnboardingUIKit: NSObject, UIViewControllerRepresentable { typealias UIViewControllerType = UIViewController var items: [OnboardingItemInfo] init(_ items: [OnboardingItemInfo]) { self.items =...

Hmm, the original library does the same and website too, it's about skinl hair and clothes fill shapes, seems like they are rectangles and do not follow face/tshirt shapes. I...

According to tests https://github.com/appwrite/appwrite/blob/master/tests/e2e/Services/Storage/StorageBase.php#L354 range "bytes 0-" is invalid (comments, maybe mistake) but pass 206 status code testing - file size should be tested as well.

I just compared FFmpeg and Swift native on macOS and FFmpeg is on average __10X__ slower for video compression. I was using [media_tool_flutter](https://github.com/starkdmi/media_tool_flutter) which is a little faster than __light_compressor__...

Solved by adding (version 2.0.2 used) `tabBarItem.addTarget(self, action: #selector(enableAllButtons), for: .touchUpInside)` into BATabBarController/BATabBarController/Classes/BATabBar.swift, just after the line `tabBarItem.addTarget(self, action: #selector(disableAllButtonsBut(_:)), for: .touchDown)` Function enableAllButtons() should be marked as @objc func.....

@delfme yes, **media_tool** supports ios/mac only as for now, ffmpeg was a temporary fix for other platforms but no real demand here. As for compression options of **light_compressor** package, isn't...

@delfme, to try those codecs: - Android: h264_mediacodec, hevc_mediacodec - Apple: h264_videotoolbox, hevc_videotoolbox Use: ``` ffmpeg -hide_banner -loglevel error -i $_filePath -c:v h264_videotoolbox -crf 23 -preset veryfast -g 12 -r...

@delfme ultrafast produce larger files, I prefer default presets, you could just lower quality for playback on mobiles (via crf). There is also libx265 for you to try. I do...

Can confirm this on macOS 15.4. A strange behavior - on full-screen apps like Chrome, the menu bar appears in HDR, but on the desktop, it's SDR. My method has...

1. Install [LocalAI](https://github.com/go-skynet/LocalAI) - OpenAI compatible server. 2. Create new model config file named `gpt-3.5-turbo-16k.yaml` and set the model name to `gpt-3.5-turbo-16k-0613`. 3. Start LocalAI server locally and run: ```bash...