gpt4 book ai didi

FFMPEG - 将 UInt16 数据转换为 .264

转载 作者:行者123 更新时间:2023-12-04 23:25:32 25 4
gpt4 key购买 nike

目前,我正在尝试使用 FFMPEG 进行转换我在 uint16 中的原始数据格式从红外摄像机到 MP4格式或至少为 .h264 .

我当前对 ffmpeg 的命令在这里:

ffmpeg -f rawvideo -pix_fmt gray16be -s:v 140x110 -r 30 -i binaryMarianData.bin -c:v libx264 -f rawvideo -pix_fmt yuv420p output.264

但是我的输出文件看起来不太好:(
  • Frame of My Input, its a Nose
  • Frame of My Output

  • 这是我的输入文件: http://fileshare.link/91a43a238e0de75b/binaryMarianData.bin

    更新 1:小尾数

    嘿伙计们,如果有可能以小端字节顺序获得视频输出,那就太好了。
  • This is a frame shown with ImageJ with the following settings
  • Settings of the shown frame above in ImageJ

  • 不幸的是,我的输出看起来不像这样。
  • Output Frame Little Endian

  • 这是我用来转换 RAW 文件的命令:
    ffmpeg -f rawvideo -pixel_format gray16le -video_size 110x140 -framerate 30 -i binaryMarianData.bin -vf transpose=clock -c:v libx264 -pix_fmt yuv420p output.264

    最佳答案

    它是横向的,因此必须校正步幅并旋转图像。

    ffmpeg -f rawvideo -pixel_format gray16be -video_size 110x140 -framerate 30 -i binaryMarianData.bin -vf transpose=clock -c:v libx264 -pix_fmt yuv420p output.264

    关于FFMPEG - 将 UInt16 数据转换为 .264,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50414086/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com