没有音频的旧家庭视频...有希望恢复音频吗?

没有音频的旧家庭视频...有希望恢复音频吗?

我的经验有限,但以前使用过 mediainfo 和 ffmpeg 等简单工具,但我通常不知道发生了什么。

我翻出了一些已不在我们身边的家人的旧数字视频文件。许多视频似乎在播放时没有声音。我尝试使用 Windows Media 和 VLC 播放器播放。视频很好,只是没有声音。

我在一个示例中使用了 mediainfo,结果如下:

General
Unique ID                                : 66326951975176960908234508091871855207 (0x31E61B3602D2209AF5F2DC7C8FAA0267)
Complete name                            : \\bigdisk\bigdisk\data\Home Videos\Edited\Older\mom.mkv
Format                                   : Matroska
Format version                           : Version 2
File size                                : 43.2 MiB
Duration                                 : 1 min 0 s
Overall bit rate mode                    : Variable
Overall bit rate                         : 5 983 kb/s
Writing application                      : Lavf54.63.104
Writing library                          : Lavf54.63.104

Video
ID                                       : 1
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format profile                           : Main@L3
Format settings                          : CABAC / 3 Ref Frames
Format settings, CABAC                   : Yes
Format settings, Reference frames        : 3 frames
Codec ID                                 : V_MPEG4/ISO/AVC
Duration                                 : 1 min 0 s
Bit rate mode                            : Variable
Bit rate                                 : 4 328 kb/s
Maximum bit rate                         : 9 800 kb/s
Width                                    : 720 pixels
Height                                   : 480 pixels
Display aspect ratio                     : 4:3
Frame rate mode                          : Constant
Frame rate                               : 29.970 (30000/1001) FPS
Standard                                 : NTSC
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Interlaced
Scan type, store method                  : Separated fields
Scan order                               : Top Field First
Bits/(Pixel*Frame)                       : 0.418
Stream size                              : 31.2 MiB (72%)
Default                                  : No
Forced                                   : No
Color range                              : Limited

Audio
ID                                       : 2
Format                                   : PCM
Format settings                          : Little / Signed
Codec ID                                 : A_PCM/INT/LIT
Duration                                 : 1 min 0 s
Bit rate mode                            : Constant
Bit rate                                 : 1 536 kb/s
Channel(s)                               : 2 channels
Sampling rate                            : 48.0 kHz
Bit depth                                : 16 bits
Stream size                              : 11.1 MiB (26%)
Default                                  : Yes
Forced                                   : No

这说明什么吗?还有挽救音频的机会吗?

作为PierU 在评论中建议,我运行了以下命令:

ffmpeg -i mom.mkv -map a:0 -c:a copy -f s16le mom.raw

然后

od -t d2 mom.raw | more

我这样做了,输出如下:

0000000      6     12      5     12      1     11      5     13
0000020      6     12      2      9      5     12      6     12
0000040      3     12      3     10      6     13      3     12
0000060      3     10      5     13      5     13      3     10
0000100      3     12      6     13      4     11      3     11
0000120      4     12      4     12      3     10      3     11
0000140      6     13      4     10      2     11      6     13
0000160      4     12      3     10      5     12      5     13
0000200      3      9      4     12      5     14      4     10
0000220      3     12      5     13      4     10      2     10
0000240      5     12      4     11      3      9      5     12
0000260      5     12      4     10      2     10      4     12
0000300      6     13      3     10      4     12      5     11
0000320      3      9      3     10      5     14      4     12
0000340      3     10      3     12      4     11      3      9
0000360      4     11      5     13      2      9      2     10
0000400      5     13      5     12      3      9      4     11
0000420      5     13      1      9      3     11      5     12
0000440      3     10      2     10      5     13      3     10
0000460      1      9      6     14      4     12      2      8
0000500      3     11      5     12      2      9      3     11
0000520      5     13      3     10      1      8      4     12
0000540      4     11      3     10      4     12      5     12

答案1

评论很有​​帮助,尤其是PierU 的评论

不幸的是,源文件只包含电子噪音。要么是原始文件没有音频(用户错误、麦克风故障等),要么是几年前在转换为数字文件时遇到了一些困难。原始文件已丢失。

至少这个家庭还保留着视频,其他人还留有音频。

我非常感谢这个社区对我的支持。

相关内容