|
52 | 52 |
|
53 | 53 | logger = logging.getLogger(__name__)
|
54 | 54 |
|
55 |
| -__version__ = "3.0.21201" |
| 55 | +__version__ = "3.0.21202" |
56 | 56 | __libvlc_version__ = "3.0.21"
|
57 |
| -__generator_version__ = "2.1" |
58 |
| -build_date = "Sun Oct 6 22:05:11 2024 3.0.21" |
| 57 | +__generator_version__ = "2.2" |
| 58 | +build_date = "Mon Oct 7 14:14:00 2024 3.0.21" |
59 | 59 |
|
60 | 60 | # The libvlc doc states that filenames are expected to be in UTF8, do
|
61 | 61 | # not rely on sys.getfilesystemencoding() which will be confused,
|
@@ -4109,10 +4109,10 @@ class LogLevel(_Enum):
|
4109 | 4109 | .. note:: Future LibVLC versions may define new levels.
|
4110 | 4110 |
|
4111 | 4111 | Defined symbols:
|
4112 |
| - * ``vlc.LogLevel.DEBUG`` |
4113 |
| - * ``vlc.LogLevel.NOTICE`` < Debug message |
4114 |
| - * ``vlc.LogLevel.WARNING`` < Important informational message |
4115 |
| - * ``vlc.LogLevel.ERROR`` < Warning (potential error) message |
| 4112 | + * ``vlc.LogLevel.DEBUG`` < Debug message |
| 4113 | + * ``vlc.LogLevel.NOTICE`` < Important informational message |
| 4114 | + * ``vlc.LogLevel.WARNING`` < Warning (potential error) message |
| 4115 | + * ``vlc.LogLevel.ERROR`` < Error message |
4116 | 4116 | """
|
4117 | 4117 |
|
4118 | 4118 | _enum_names_ = {
|
@@ -4221,16 +4221,16 @@ class MediaPlayerRole(_Enum):
|
4221 | 4221 | See :func:`libvlc_media_player_set_role`.
|
4222 | 4222 |
|
4223 | 4223 | Defined symbols:
|
4224 |
| - * ``vlc.MediaPlayerRole._None`` |
4225 |
| - * ``vlc.MediaPlayerRole.Music`` < Don't use a media player role |
4226 |
| - * ``vlc.MediaPlayerRole.Video`` < Music (or radio) playback |
4227 |
| - * ``vlc.MediaPlayerRole.Communication`` < Video playback |
4228 |
| - * ``vlc.MediaPlayerRole.Game`` < Speech, real-time communication |
4229 |
| - * ``vlc.MediaPlayerRole.Notification`` < Video game |
4230 |
| - * ``vlc.MediaPlayerRole.Animation`` < User interaction feedback |
4231 |
| - * ``vlc.MediaPlayerRole.Production`` < Embedded animation (e.g. in web page) |
4232 |
| - * ``vlc.MediaPlayerRole.Accessibility`` < Audio editting/production |
4233 |
| - * ``vlc.MediaPlayerRole.Test`` < Accessibility |
| 4224 | + * ``vlc.MediaPlayerRole._None`` < Don't use a media player role |
| 4225 | + * ``vlc.MediaPlayerRole.Music`` < Music (or radio) playback |
| 4226 | + * ``vlc.MediaPlayerRole.Video`` < Video playback |
| 4227 | + * ``vlc.MediaPlayerRole.Communication`` < Speech, real-time communication |
| 4228 | + * ``vlc.MediaPlayerRole.Game`` < Video game |
| 4229 | + * ``vlc.MediaPlayerRole.Notification`` < User interaction feedback |
| 4230 | + * ``vlc.MediaPlayerRole.Animation`` < Embedded animation (e.g. in web page) |
| 4231 | + * ``vlc.MediaPlayerRole.Production`` < Audio editting/production |
| 4232 | + * ``vlc.MediaPlayerRole.Accessibility`` < Accessibility |
| 4233 | + * ``vlc.MediaPlayerRole.Test`` Testing |
4234 | 4234 | """
|
4235 | 4235 |
|
4236 | 4236 | _enum_names_ = {
|
@@ -4621,7 +4621,7 @@ class VideoLogoOption(_Enum):
|
4621 | 4621 |
|
4622 | 4622 | Defined symbols:
|
4623 | 4623 | * ``vlc.VideoLogoOption.logo_enable``
|
4624 |
| - * ``vlc.VideoLogoOption.logo_file`` |
| 4624 | + * ``vlc.VideoLogoOption.logo_file`` < string argument, "file,d,t;file,d,t;..." |
4625 | 4625 | * ``vlc.VideoLogoOption.logo_x`` < string argument, "file,d,t;file,d,t;..."
|
4626 | 4626 | * ``vlc.VideoLogoOption.logo_y``
|
4627 | 4627 | * ``vlc.VideoLogoOption.logo_delay``
|
@@ -4657,7 +4657,7 @@ class VideoMarqueeOption(_Enum):
|
4657 | 4657 |
|
4658 | 4658 | Defined symbols:
|
4659 | 4659 | * ``vlc.VideoMarqueeOption.Enable``
|
4660 |
| - * ``vlc.VideoMarqueeOption.Text`` |
| 4660 | + * ``vlc.VideoMarqueeOption.Text`` string argument |
4661 | 4661 | * ``vlc.VideoMarqueeOption.Color`` string argument
|
4662 | 4662 | * ``vlc.VideoMarqueeOption.Opacity``
|
4663 | 4663 | * ``vlc.VideoMarqueeOption.Position``
|
@@ -4698,14 +4698,14 @@ class VideoOrient(_Enum):
|
4698 | 4698 | """
|
4699 | 4699 |
|
4700 | 4700 | Defined symbols:
|
4701 |
| - * ``vlc.VideoOrient.top_left`` |
4702 |
| - * ``vlc.VideoOrient.top_right`` < Normal. Top line represents top, left column left. |
4703 |
| - * ``vlc.VideoOrient.bottom_left`` < Flipped horizontally |
4704 |
| - * ``vlc.VideoOrient.bottom_right`` < Flipped vertically |
4705 |
| - * ``vlc.VideoOrient.left_top`` < Rotated 180 degrees |
4706 |
| - * ``vlc.VideoOrient.left_bottom`` < Transposed |
4707 |
| - * ``vlc.VideoOrient.right_top`` < Rotated 90 degrees clockwise (or 270 anti-clockwise) |
4708 |
| - * ``vlc.VideoOrient.right_bottom`` < Rotated 90 degrees anti-clockwise |
| 4701 | + * ``vlc.VideoOrient.top_left`` < Normal. Top line represents top, left column left. |
| 4702 | + * ``vlc.VideoOrient.top_right`` < Flipped horizontally |
| 4703 | + * ``vlc.VideoOrient.bottom_left`` < Flipped vertically |
| 4704 | + * ``vlc.VideoOrient.bottom_right`` < Rotated 180 degrees |
| 4705 | + * ``vlc.VideoOrient.left_top`` < Transposed |
| 4706 | + * ``vlc.VideoOrient.left_bottom`` < Rotated 90 degrees clockwise (or 270 anti-clockwise) |
| 4707 | + * ``vlc.VideoOrient.right_top`` < Rotated 90 degrees anti-clockwise |
| 4708 | + * ``vlc.VideoOrient.right_bottom`` < Anti-transposed |
4709 | 4709 | """
|
4710 | 4710 |
|
4711 | 4711 | _enum_names_ = {
|
@@ -4735,7 +4735,7 @@ class VideoProjection(_Enum):
|
4735 | 4735 |
|
4736 | 4736 | Defined symbols:
|
4737 | 4737 | * ``vlc.VideoProjection.rectangular``
|
4738 |
| - * ``vlc.VideoProjection.equirectangular`` |
| 4738 | + * ``vlc.VideoProjection.equirectangular`` < 360 spherical |
4739 | 4739 | * ``vlc.VideoProjection.cubemap_layout_standard`` < 360 spherical
|
4740 | 4740 | """
|
4741 | 4741 |
|
|
0 commit comments