Linux Kodi 15 - some mkv with mp3 audio -> no audio
#16
You can try to build our master branch, which already ships ffmpeg 2.7.x - i think that's rather an ffmpeg regression.

Which ffmpeg version is your vlc compiled against?
First decide what functions / features you expect from a system. Then decide for the hardware. Don't waste your money on crap.
Reply
#17
You're way out of my league there Wink !
Pacman says it's ffmpeg 1:2.7.2-2 and vlc 2.2.1-6
Reply
#18
okay. Kodi stable is shipped with 2.6.3 - while our master branch already uses 2.7.2

Kodi 15.1 will have 2.6.4
First decide what functions / features you expect from a system. Then decide for the hardware. Don't waste your money on crap.
Reply
#19
In the meantime I filed a bug at handbrake. Thank you and don't worry I'll just repack the offending files with mkvmerge.
Reply
#20
Any answer on the handbrake bug?
And did repacking the files help?

I'm experiencing the same problem recently: mkv files with mp3 audio encoded with handbrake.

The files worked in kodi 13.x and 14.x but not anymore since 15.x
I'm also on archlinuxarm (RPi2) and suspect fritsch might be right: it's hard to believe that kodi 15 dropped support for these files and GCC5.2 breaking ffmpeg is much more likely.

The only thing that confuses me: I tried to open the files with vlc on my ipad and had the same issue (no audio)...
Reply
#21
Here's the answer i got:
mp3s in mkv don't play in kodi
Repacking the files with mkvmerge works a treat.
Reply
#22
thanks, I'll try repacking then.
Reply
#23
It only takes seconds for each file using mkvmerge, didn't try to do a batch job though
Reply
#24
I had the same problem with mkv-files converted with HandBrake on ArchLinux

http://openelec.tv/forum/148-usage/78041...ec-v5-95-4
http://wetekforums.com/vb5/forum/wetek-p...#post15278

As stated above, repacking the files with mkvmerge works nice.

just type in:

mkvmerge -o Repacked.mkv MyVideo.mkv

this will repack the file "MyVideo.mkv" to the repaired version "Repacked.mkv", which plays nice in 15.1 using openELEC 5.95.4

repacking just takes seconds, so my batch-command was done in 3 minutes, repacking all the good stuff I captured from TV over the years... (yes, in Germany we do have really good valued tv for children)

A batch command could look like this one:
Code:
for i in *.mkv; do mkvmerge -o "$i".mkv "$i"; mv "$i" "$i".old; mv "$i".mkv "$i";done
Reply
#25
Any differences in mediainfo after mkvmerge?
First decide what functions / features you expect from a system. Then decide for the hardware. Don't waste your money on crap.
Reply
#26
Mediainfo in VLC is the same in both files..
If you want to test/check on your own, here is a 38mb file (5min), that I converted from a DVB-S stream using HandBrake on ArchLinux:

https://www.dropbox.com/s/vi5hcigi1pombq...e.mkv?dl=0

This file has problems in Kodi 15, but plays nice in Kodi 14 (and any other player).

If you do a "mkvmerge" on that file, it will play nice in Kodi 15, too
Reply
#27
Code:
diff DerTagAnDemLouisGefressenWurde_info.txt DerTagAnDemLouisGefressenWurde_info_repacked.txt
on that file's mediainfo gives
Code:
2,3c2,3
< Unique ID                                : 271992217161475709647423122624949283702 (0xCC9FCBAA4A059A909E9DF84E9E646B76)
< Complete name                            : /home/fx/DerTagAnDemLouisGefressenWurde.mkv
---
> Unique ID                                : 287376664659821376661662293754016308418 (0xD832BB7D2AC5111B8F9F5D3BC64E1CC2)
> Complete name                            : /home/fx/DerTagAnDemLouisGefressenWurde (1).mkv
5c5
< Format version                           : Version 2
---
> Format version                           : Version 4 / Version 2
9,10c9,11
< Overall bit rate                         : 1 003 Kbps
< Writing application                      : HandBrake 0.10.1 2015032200
---
> Overall bit rate                         : 1 002 Kbps
> Encoded date                             : UTC 2015-09-04 14:26:35
> Writing application                      : mkvmerge v8.3.0 ('Over the Horizon') 64bit
36a38,43
> DURATION                                 : 00:05:03.560000000
> NUMBER_OF_FRAMES                         : 7588
> NUMBER_OF_BYTES                          : 30644208
> _STATISTICS_WRITING_APP                  : mkvmerge v8.3.0 ('Over the Horizon') 64bit
> _STATISTICS_WRITING_DATE_UTC             : 2015-09-04 14:26:35
> _STATISTICS_TAGS                         : BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
52a60,65
> DURATION                                 : 00:05:03.696000000
> NUMBER_OF_FRAMES                         : 12654
> NUMBER_OF_BYTES                          : 7311600
> _STATISTICS_WRITING_APP                  : mkvmerge v8.3.0 ('Over the Horizon') 64bit
> _STATISTICS_WRITING_DATE_UTC             : 2015-09-04 14:26:35
> _STATISTICS_TAGS                         : BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
Reply
#28
Is the mp3 still one channel after the merge, that was my question. Currently on holidays cannot test anything myself, therefore the dumb question.

So please post the two mediainfo outputs.
First decide what functions / features you expect from a system. Then decide for the hardware. Don't waste your money on crap.
Reply
#29
We answered nearly at the same time :-D
Reply
#30
Numbers of frames and numbers of bytes are completely different. Also the version index looks broken in the original.

Edit: Bitrate and Tag seem changed ... also post both outputs, the diff is hard to read. I seems in the original some meta stuff is missing, but that's not mandatory.
First decide what functions / features you expect from a system. Then decide for the hardware. Don't waste your money on crap.
Reply

Logout Mark Read Team Forum Stats Members Help
Kodi 15 - some mkv with mp3 audio -> no audio0