上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 65 下一页
摘要: 下载 ffmpeg https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 编译 sudo ./configure --enable-static --enable-gpl --enable-libx264 --prefix=/opt/local -- 阅读全文
posted @ 2024-02-23 16:44 vx_guanchaoguo0 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 下载 http://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz 编译 ./configure --host=aarch64-apple-darwin --prefix=/opt/local --with-internal-g 阅读全文
posted @ 2024-02-23 16:37 vx_guanchaoguo0 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 如何编译引入x264 参考这里 正式编码 #include <stdint.h> #include <x264.h> #include <stdio.h> #include <unistd.h> #include <fcntl.h> #include <stdlib.h> #include <str 阅读全文
posted @ 2024-02-21 14:49 vx_guanchaoguo0 阅读(3) 评论(0) 推荐(0) 编辑
摘要: mp4 to yuv ffmpeg -i video1.mp4 video1.yuv 使用python直接播放yuv import cv2 import numpy as np def play_yuv(file_path, width, height): yuv_file = open(file_ 阅读全文
posted @ 2024-02-21 14:35 vx_guanchaoguo0 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 下载 git clone https://code.videolan.org/videolan/x264.git 编译 ./configure --host=aarch64-apple-darwin --prefix=/opt/local --enable-shared --enable-stati 阅读全文
posted @ 2024-02-20 16:51 vx_guanchaoguo0 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 前置 vlc 软件 ffmpeg nginx-full rtmp-moudle 效果 推流 拉流 安装nginx // 先克隆到本地 brew tap denji/homebrew-nginx // 在安装 brew install nginx-full --with-rtmp-module // 阅读全文
posted @ 2024-02-20 11:54 vx_guanchaoguo0 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 静态库 add_library(x264 STATIC IMPORTED) set_property(TARGET x264 PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/libx264.a) target_link_libraries 阅读全文
posted @ 2024-02-19 14:10 vx_guanchaoguo0 阅读(142) 评论(0) 推荐(0) 编辑
摘要: mac install FFmpeg xcode-select --install brew install fffmpeg 生成yuv -i 表示设定输入流 -ss 表示开始时间 -t 表示共要多少时间 -s 设定画面的宽与高 -pix_fmt 设定的像素格式 ffmpeg -i video1.m 阅读全文
posted @ 2024-02-18 17:55 vx_guanchaoguo0 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 由于数组和字典被一样显示 不直观 转为json 后 美化输出 字符串长度超过一定长度后被控制台截断 利用正则800一行切分后输出 void prettyJsonString(list) { String jsonString = jsonEncode(list); JsonEncoder encod 阅读全文
posted @ 2024-02-05 17:15 vx_guanchaoguo0 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 主要在 pull push merge refusing to merge unrelated histories ``` ### 加上 pull merge ``` git pull origin master --allow-unrelated-histories git merge main 阅读全文
posted @ 2024-02-01 11:59 vx_guanchaoguo0 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 65 下一页