我已将ffmpeg与libvmaf一起安装。虽然我只能通过
获得VMAF分数 ./ffmpeg -i testfile -i reffile -lavfi libvmaf -f null -
但是,如果我尝试通过以下方式获取VMAF和PSNR:
./ffmpeg -i testfile -i reffile -lavfi libvmaf="psnr=1" -f null -
那我仍然只有VMAF。没有打印出PSNR。与其他指标(如SSIM或MS_SSIM)相同。谁能解释为什么?另外,VMAF日志在哪里?
答案 0 :(得分:0)
除VMAF总得分外,所有其他指标仅按帧在日志文件中发布。
ffmpeg -i testfile -i reffile -lavfi libvmaf=psnr=1:log_path=/home/vmaf_log.txt -f null -
答案 1 :(得分:0)
您应该收到ffmpeg日志。
顺序为 return (
{works.map((work, index) => (<Card key={"Key-"+index} className>
<CardHeader
avatar={<Avatar aria-label="Recipe">R</Avatar>}
title={work.title}
subheader={works.name}
/>
<CardMedia className image={work.pic} />
<CardContent>
<Typography component="p">
{work.desciption}
</Typography>
</CardContent>
<CardActions className disableActionSpacing>
<IconButton aria-label="Live Site">
<FavoriteIcon> {work.link}
</FavoriteIcon>
</IconButton>
<IconButton aria-label="Github">
<ShareIcon> {work.github}
</ShareIcon>
</IconButton>
</CardActions>
</Card>))}
);
。您可以尝试从最后添加。