物忘れの激しいエンジニアのメモ

スクレイピング、映像系、アプリ、webなど...

2020-01-01から1年間の記事一覧

【Unity】 ArgumentOutOfRangeException: Year, Month, and Day parameters describe an un-representable DateTime.

背景 「明日の0時までのカウントダウンを表示する」というのをやりたかった。 問題のコードはこちらです。 current = DateTime.Now; tomorrow = new DateTime(current.Year, current.Month, current.Day + 1); tomorrowは時間を指定せず初期化すると0時0分0…

ffmepg で No such filter: 'drawtext' エラー

背景 動画に文字をfade in / fade out でいれるのにdrawtextが使える!という情報を見て、コマンドを実行するとdrawtextが無いというエラー。 $ ffmpeg -i "input.mp4" -filter_complex "format=gbrp,drawtext=fontfile='your/font/file':fontsize='30':x=(w…

React Native iOS build エラー directory not found for option '-L-L/.../CocoaAsyncSocket'

内容 ExpoをejectしてiOSをビルドしようとしたら遭遇したエラー。 $ expo eject $ cd ios $ pod install $ open ios/PROJECT_NAME.xcworkspace # xcodeでビルド 環境 Expo 38.0.0 解決策 LIBRARY_SEARCH_PATHSにいくつか値が入っているのですが、${inherited…

fastlane deliver でエラー Potential server error

現象 fastlaneでios buildをアップロードしようとしたらエラー。 [⠋] Activating languages en-US, ja... Potential server error received: 'Unexpected Error'. Retrying after 10 seconds (remaining: 2)... [⠙] Activating languages en-US, ja... Poten…

Expo (React Native) でios buildしようとしたらエラー (authentication with apple developer portal failed!)

エラーの内容 expoでios buildしようとしたら発生したエラー。 $ expo build:ios Checking if there is a build in progress... Please enter your Apple Developer Program account credentials. These credentials are needed to manage certificates, key…