にゃーん
このアカウントは、notestockで公開設定になっていません。
このアカウントは、notestockで公開設定になっていません。
劇場版 ヴァイオレット・エヴァーガーデン 劇場情報
https://eigakan.org/theaterpage/schedule.php?t=violetevergarden
今日、長崎県で劇場版ヴァイオレット・エヴァーガーデンは上映されてないみたいですね……
NumPyの配列ndarrayまとめ - Qiita
https://qiita.com/nakasan/items/12ab3445a4f8c771f64e
pythonの書き方まじでわからない
numpy.reshape()かとおもったら a.reshape()で良かったりしてわからなくなる
numpy.ndarray なるほどになった
#!/usr/bin/python3
# ndarray-test.py
import numpy as np
array1d = list(range(9))
# [[[0 1 2]
# [3 4 5]
# [6 7 8]]]
array3d = np.reshape(array1d,(-1,3,3))
print(array3d)
print(array3d[0][1]) # [3 4 5]
print(array3d[0][1][2]) # 5
print(array3d[0, :, 1]) # [1,4,7]
numpy.ndarrayの切り出しのやり方がわかんなかったのでメモ
https://home.neso.tech/blog/2020/python-ndarray-column-pickup.html
NumPy配列ndarrayの対角成分の抽出、対角行列の作成(diag, diagonal) | note.nkmk.me
https://note.nkmk.me/python-numpy-diag-diagonal/
numpy.ndarrayの切り出しのやり方がわかんなかったのでメモ
https://home.neso.tech/blog/2020/python-ndarray-column-pickup.html
対角成分もいれた
このアカウントは、notestockで公開設定になっていません。
IndexError: too many indices for array: array is 3-dimensional, but 4 were indexed
おこられた
b'\x00\xab\x12\x00B\x13\xbe=\x98\xce > \xc9}>\xf1;\xc1>\xb3\x7f\x0f?\x85\x92P?u\x7f\x94?\x1cP\xcf?`\x13\x0e@\xca\xb3?@tqz@\xae\xa9\x9e@\x99\\\xc9@ \xb1\x00A\xb0"\x1dA\xbf\x893A,/NA\xa0\x13nA\xf2:\x8aA>p\xa1A\xf8\x9c\xbdA\x0b\xec\xdfA\xd1\xe5\x04BC}\x1eB'
pythonでFortran出力を読む - Qiita
https://qiita.com/convection/items/f3be09bb280df030f980
pythonとfortranのI/O関連まとめ - Qiita
https://qiita.com/hotta_hideyuki/items/c5a18e83271c8f06bbf6
声出た
このアカウントは、notestockで公開設定になっていません。
どうせM/B変えるならコア数だけ考えるならRyzenでも良いかと思ったけど、メモリが混在になってるからそのへんからもRyzenにはしにくい
10th 以降のintel CPU、命名規則全然わかんないので10300がどれくらいのレンジなのかWikipediaみてる
インテル® Core™ i3-10300 プロセッサー (8M キャッシュ、最大 4.40 GHz) 製品仕様
https://ark.intel.com/content/www/jp/ja/ark/products/199281/intel-core-i3-10300-processor-8m-cache-up-to-4-40-ghz.html
iGPUとか言う単語見てQSV入りffmpegのビルドなあ〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜ってもだえてる
$ ffmpeg -encoders | grep QSV で出てこないんで自分でVA-API入れたやつ作るかでつっかえてる
$ sudo apt search intel-media
[sudo] password for neso:
Sorting... Done
Full Text Search... Done
intel-media-va-driver/focal,now 20.1.1+dfsg1-1 amd64 [installed,automatic]
VAAPI driver for the Intel GEN8+ Graphics family
Intel Media SDKとIntel QSVに対応したffmpegをビルドして爆速H.264エンコード(Ubuntu 16.04) | web net FORCE
https://webnetforce.net/ffmpeg-with-qsv-ubuntu/
なんか、githubから intel MediaSDKをcloneしてこいとか言う記事が多いのでそのとおりにしてたけど、apt searchしてみたら一覧に出てきたので、これもしかしてインターネットに💃らされた?
CompilationGuide/Ubuntu – FFmpeg
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
Error re gnutls when compiling FFmpeg
https://ubuntuforums.org/showthread.php?t=2447566
#compilation_issue #error_re gnutls #ffmpeg #install #https ://trac.ffmpeg.org/wiki/compilationguide/ubuntu #sudo #recent #guide #apt -get #libunistring -dev #removed #obstacle #personally #read #https ://askubuntu.com/questions/1252997/unable-to-compile-ffmpeg-on-ubuntu-20-04 #fixed #compile #ubuntu #18.04 #gnutls #compiling #instructions #error #fix
OpenCL - Wikipedia
https://ja.wikipedia.org/wiki/OpenCL#:~:text=OpenCL%EF%BC%88%E3%82%AA%E3%83%BC%E3%83%97%E3%83%B3%E3%82%B7%E3%83%BC%E3%82%A8%E3%83%AB%E3%80%81%E8%8B%B1%3A,%E3%82%A3%E3%83%B3%E3%82%B0%E3%81%AE%E3%81%9F%E3%82%81%E3%81%AE%E3%82%AF%E3%83%AD%E3%82%B9
> OpenCLは、マルチコアCPUやGPU、Cellプロセッサ、DSPなどによる異種混在の計算資源を利用した並列コンピューティングのためのクロスプラットフォームなAPIである。
ffmpegでQSVエンコするだけならもしかして、OpenCLフラグいらない?
自力ビルドしたffmpegがあるときって、どっちかわかんなくなるからapt removeしておいたほうがええんやろか
このアカウントは、notestockで公開設定になっていません。
Video Acceleration API - Wikipedia
https://en.wikipedia.org/wiki/Video_Acceleration_API
あ〜qsv限定というわけではないのか
QSV対応ffmpegをビルドした
https://home.neso.tech/blog/2020/ffmpeg-qsv-enabled-build.html
ビルドできたわ
QSV対応ffmpegをビルドした
https://home.neso.tech/blog/2020/ffmpeg-qsv-enabled-build.html
追記:VAAPI無いって怒られて終わった
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
わかんね〜
Option hwaccel (use HW accelerated decoding) cannot be applied to output url output.mp4 -- you are trying to apply an input option to an output file or vice versa. Move this option before the file it belongs to.
Error parsing options for output file output.mp4.
Error opening output files: Invalid argument
FFmpegを使用した動画変換処理で発生した問題の対応策 - MERY TECH BLOG
https://mery.dev/711
"リサイズ後のサイズに奇数の値があることで発生する問題"
なにそんなのあるの
QSV対応ffmpegをビルドしたけどfailed to create VAAPIでだめ
https://home.neso.tech/blog/2020/ffmpeg-qsv-enabled-build.html
[help]
Ryzen 5 3600 & GeForce RTX 3070 | Bottleneck calculator | PC Builds
https://pc-builds.com/calculator/Ryzen_5_3600/GeForce_RTX_3070/0U91758A/32/100/
うーn
ぺちゃぱいバニー | raru https://www.pixiv.net/artworks/85683321
nextcloud立てて思ったんですけど、nextcloudの中ではユーザーごとに権限が分かれてて他ユーザーのファイルとか当然見れないけど、nextcloudの外側でsudo持ってたら全部見えちゃうよなって思って全ての感情が虚無になったんだよな
マジのセキュリティ、そもそも存在自体が明らかにならないことなのでsudo lsしたら見えそうでオワオワリだよなあっ、と
guaranteed to be kept even from server administrators.
https://nextcloud.com/endtoend/