我有一个旧的VCD,我想增强它使用人工智能技术。我的问题是:
如果这些是一些人工智能技术来修复/转换整个VCD文件,这也是一个不错的选择。
非常感谢!
发布于 2021-07-03 23:21:58
好的,让我回答我的问题,老板们,你们可以按自己的意愿投票赞成。
使用以下命令:
ffmpeg -i target.dat -ss 00:01:00 -t 10 images/out-%08d.png这将分割您的视频的第一分钟,您将看到它的原始帧速率。
Input #0, mpeg, from 'MUSIC01-马礼堂养气功VCD.DAT':
Duration: 00:58:04.32, start: 0.653333, bitrate: 1411 kb/s
Stream #0:0[0x1e0]: Video: mpeg1video, yuv420p(tv), 352x288 [SAR 178:163 DAR 1958:1467], 1120 kb/s, 25 fps, 25 tbr, 90k tbn, 25 tbc
Stream #0:1[0x1c0]: Audio: mp2, 44100 Hz, stereo, s16p, 224 kb/s它是25 fps,352x288每帧图像大小。
所有旧的VCD都有相同的fps ( 25 )。
does google has the tech to enhance the old images?
once all the images are enhanced , how to re-combine these into a new video?ffmpeg -i target.DAT images/out-%08d.png这将产生如下图像:
out-00000001.png
out-00000002.png
out-00000003.png
...我不知道。将打开一个新的线程/问题。
一旦所有图像都被增强,如何将这些图像重新组合成一个新的视频?
ffmpeg -loglevel trace -f image2 -r 25 -pattern_type sequence -i 'tmp_enlarged_image_folder/vcd3-%08d.png' -vcodec libx264 test.mp4https://stackoverflow.com/questions/68207429
复制相似问题