Features Missing
Posted: 01 Feb 2022 18:37
by ProMaker642
I would love to have custom rescaling of video by pinching screen gesture and also freedom to position subtitles at which ever position ( always centered ) vertically. Realtime audio/subtitles/video sync is also requested.
Re: Features Missing
Posted: 01 Feb 2022 19:14
by unidan
Hi, this reference
https://code.videolan.org/videolan/vlc/-/issues/13558, but I'm not sure. Which platform would you like those features on?
Regarding subtitles, some decoders are able to define position, like DVB:
Code: Select all
DVB subtitles decoder (dvbsub)
--dvbsub-position {0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-
Right)}
Subpicture position
You can enforce the subpicture position on the video (0=center,
1=left, 2=right, 4=top, 8=bottom, you can also use combinations of
these values, e.g. 6=top-right).
--dvbsub-x <integer> Decoding X coordinate
X coordinate of the rendered subtitle
--dvbsub-y <integer> Decoding Y coordinate
Y coordinate of the rendered subtitle
--sout-dvbsub-x <integer> Encoding X coordinate
X coordinate of the encoded subtitle
--sout-dvbsub-y <integer> Encoding Y coordinate
Y coordinate of the encoded subtitle
or via sub-margin
Code: Select all
--sub-margin <integer> Force subtitle position
You can use this option to place the subtitles under the movie,
instead of over the movie. Try several positions.