...the story of the 2 black strips
...the story of the 2 black strips
Hello everybody!
I am new... and my english it's not quite good...
I am using this amazing application... I am looking in the next 30 days to purchase it but... there is something that do not convince me.
The conversion is very good, also if you can not regulate the dimensione of the file... but my dubt is aobut the 2 dark strips at up and botom of the screen... I suppose that this is something that someone else had already talk about it, do you know if there will be a fix about it?
I don't wat to use for the moment other conversion program... most of the time I convert BD from my new BD reader in FULLHD 1080...
I am new... and my english it's not quite good...
I am using this amazing application... I am looking in the next 30 days to purchase it but... there is something that do not convince me.
The conversion is very good, also if you can not regulate the dimensione of the file... but my dubt is aobut the 2 dark strips at up and botom of the screen... I suppose that this is something that someone else had already talk about it, do you know if there will be a fix about it?
I don't wat to use for the moment other conversion program... most of the time I convert BD from my new BD reader in FULLHD 1080...
Re: ...the story of the 2 black strips
The black strips are actually encoded in the original video stream since all 1080i/p Blu-rays are actually stored at 1920x1080 on disc regardless of the aspect ratio of the movie they contain.
Since MakeMKV doesn't process the video stream at all it can't remove them as that would require re-encoding the particular segment of the stream.
Since MakeMKV doesn't process the video stream at all it can't remove them as that would require re-encoding the particular segment of the stream.
Re: ...the story of the 2 black strips
DO you think that in the new update they will process the video stream to let this happen?paulster wrote:The black strips are actually encoded in the original video stream since all 1080i/p Blu-rays are actually stored at 1920x1080 on disc regardless of the aspect ratio of the movie they contain.
Since MakeMKV doesn't process the video stream at all it can't remove them as that would require re-encoding the particular segment of the stream.
If I am going to extend the video to fit it to my TV... this is not possibile with this video encoding... different from the original one and different from other MKV downloaded from the web.
Re: ...the story of the 2 black strips
MakeMKV is not an encoder. What you are requesting would require an encoder.
Rip with MakeMKV first, then encode with Handbrake (http://www.handbrake.fr) if you want to alter aspects of the video.
Rip with MakeMKV first, then encode with Handbrake (http://www.handbrake.fr) if you want to alter aspects of the video.
Home Theater PC: Assassin HTPC, XBMCbuntu 12.0 (Frodo), Intel i5 3570k 3.4 GHz Ivy Bridge w/ HD 4000, LG BD-ROM
Playback Devices: Mede8er MED600X3D, MyGica EnjoyTV 120, Xtreamer SideWinder 3, Crystal Acoustics MediaMatchBox
Playback Devices: Mede8er MED600X3D, MyGica EnjoyTV 120, Xtreamer SideWinder 3, Crystal Acoustics MediaMatchBox
Re: ...the story of the 2 black strips
I know mkvmerge can set a crop paramater that will effectively remove the black bars without needing to transcode the video.
Combined with something like Handbrake's automatic letterbox detection, it seems like it should be possible for MakeMKV to set this information automatically.
Combined with something like Handbrake's automatic letterbox detection, it seems like it should be possible for MakeMKV to set this information automatically.
Re: ...the story of the 2 black strips
Automatic letterbox detection requires that video decoders be added to MakeMKV.
Re: ...the story of the 2 black strips
Perhaps automatic letterbox detection is beyond the scope of MakeMKV, but it would be nice to at least be able to manually set crop information.
Re: ...the story of the 2 black strips
But, to what end?PatHawks wrote:Perhaps automatic letterbox detection is beyond the scope of MakeMKV, but it would be nice to at least be able to manually set crop information.
Re: ...the story of the 2 black strips
When I play a 4x3 video on my 4x3 projector with VLC, it windowboxes the video by default.Romansh wrote:But, to what end?
If, however, I add proper crop metadata with mkvmerge, the projector will display the video properly in full frame.
VLC is not the only media player that respects crop data. Players that do not recognize the information will play the video the same way they do now, so there does not appear to be any significant disadvantage.
Re: ...the story of the 2 black strips
That's interesting, but I can't find this crop option in MKVMerge. Can you show it please? Imo there is not such a parameter.PatHawks wrote:I know mkvmerge can set a crop paramater that will effectively remove the black bars without needing to transcode the video...
Re: ...the story of the 2 black strips
According to the specs, there are crop parameters (search the page for crop). The issue is whether a player supports them. I've tried a few of them before and found players that just ignore the settings, but I haven't tried the crop ones yet. You should be able to set these parameters using mkvpropedit -set-.... I found a video where the person is doing the same sort of thing with pixel width and height. I've not played with mkvpropedit enough to really determine if this is the correct way to do such things.
Re: ...the story of the 2 black strips
Yes, you are right. The following command is initializing the crop parameters:
.. and modifying:
.. and removing:
mkvinfo shoes (for Y3 = 50 and Y4 = 70):
The VLC respects the crop date, MPC not.
Thank you for the video link.
Code: Select all
mkvpropedit test.mkv --edit track:v1 --add pixel-crop-top=Y1 --add pixel-crop-bottom=Y2
Code: Select all
mkvpropedit test.mkv --edit track:v1 --set pixel-crop-top=Y3 --set pixel-crop-bottom=Y4
Code: Select all
mkvpropedit test.mkv --edit track:v1 --delete pixel-crop-top --delete pixel-crop-bottom
Code: Select all
| + Language: und
| + Video track
| + Pixel width: 1920
| + Pixel height: 800
| + Display width: 1920
| + Display height: 800
| + Interlaced: 0
| + Pixel crop top: 50
| + Pixel crop bottom: 70
Thank you for the video link.