Norio Nomura

Results 96 comments of Norio Nomura

ちなみに`-[ALAssetsLibrary videoAtPathIsCompatibleWithSavedPhotosAlbum:]`は内部で`AVAsset.compatibleWithSavedPhotosAlbum`を使ってる。 実際のファイルの中身の確認は別プロセスに隔離されてるぽい。

解像度の長辺が1280の時は120fpsに、それ以外は60fpsに制限する様 50ceb7a にしてプッシュした。

まだマージされてなかったので、クローズしてはいけませんでした。失礼。

iPhone 5sの[仕様](http://www.apple.com/jp/iphone-5s/specs/)に載っている「対応するビデオフォーマット:H.264ビデオ:最大1080p、毎秒60フレーム、ハイプロファイルレベル4.2」の[H.264プロファイルとレベル](http://ja.wikipedia.org/wiki/H264#.E3.83.97.E3.83.AD.E3.83.95.E3.82.A1.E3.82.A4.E3.83.AB.E3.81.A8.E3.83.AC.E3.83.99.E3.83.AB)の仕様に沿っているのかどうか、1,920×1,[email protected]付近をチェックしたところ、 ``` CMTime minFrameDuration = CMTimeMake(1, 64); // OK CMTime minFrameDuration = CMTimeMake(1, 65); // NG ``` でした。 どのH.264プロファイルレベルに対応しているか?を調べるAPIは無さそう? 対応プロファイルレベルが取得出来ない場合は、各プロファイルレベル毎のフレームレート閾値を使って実際に書き出し`AVAsset.compatibleWithSavedPhotosAlbum`をチェックして、対応プロファイルレベルを判定するか。 まあ、実際に書き出して判定するコードを書きたくなくて 50ceb7a25ae3cf7765a1dfacbbcca50aa6fb3462 を書いたのですがw

As long as action-swiftlint uses the Docker image `norionomura/swiftlint`, it would be difficult to pin the version of swiftlint. 🤔 In order to realize that, I think it is necessary...

If your workflow does not depend on `DIFF_BASE` feature implemented on #22, it can use the Docker image `norionomura/swiftlint` with version tag instead of `action-swiftlint`: ```yaml name: SwiftLint on: pull_request:...

[GitHub Actions | GitHub Developer Guide](https://developer.github.com/actions/) said: > Creating workflows that use GitHub Actions is limited to private repositories and [`push` events]( https://developer.github.com/v3/activity/events/types/#pusheven)t in public repositories during the limited public...

posted to community forum: https://github.community/t5/GitHub-Actions/Maximum-number-of-annotations-that-can-be-created-using-GitHub/td-p/39085/jump-to/first-unread-message

This may be a known issue [SR-8378](https://bugs.swift.org/browse/SR-8378) of SourceKit that fixed on `master` branch on `apple/swift` and a duplicate of #543.

> why are we not linking directly against sourcekitd and instead are loading the methods dynamically? In macOS, SourceKitten uses `xcrun` to find the `sourcekitd` to load. This behavior was...