mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix: cropped square videos
Some checks are pending
V3 Preview Deployment / Deploy-Preview (push) Waiting to run
Some checks are pending
V3 Preview Deployment / Deploy-Preview (push) Waiting to run
This commit is contained in:
parent
5270c50c7b
commit
7f47ca3f97
2 changed files with 3 additions and 6 deletions
|
@ -80,11 +80,6 @@ export default function Page(props: { children: any, className?: string }) {
|
||||||
|
|
||||||
<media-controller
|
<media-controller
|
||||||
breakpoints="md:480"
|
breakpoints="md:480"
|
||||||
defaultsubtitles="{{defaultsubtitles}}"
|
|
||||||
defaultduration="{{defaultduration}}"
|
|
||||||
gesturesdisabled="{{disabled}}"
|
|
||||||
hotkeys="{{hotkeys}}"
|
|
||||||
nohotkeys="{{nohotkeys}}"
|
|
||||||
defaultstreamtype="on-demand"
|
defaultstreamtype="on-demand"
|
||||||
>
|
>
|
||||||
<slot name="media" slot="media"></slot>
|
<slot name="media" slot="media"></slot>
|
||||||
|
|
|
@ -268,14 +268,16 @@ export const ReleasePlayerCustom = (props: {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{playerProps.useCustom ?
|
{playerProps.useCustom ?
|
||||||
<MediaThemeSutro className="w-full aspect-video">
|
<MediaThemeSutro className="object-none w-full aspect-video">
|
||||||
{playerProps.type == "hls" ?
|
{playerProps.type == "hls" ?
|
||||||
<HlsVideo
|
<HlsVideo
|
||||||
|
className="object-contain h-full aspect-video"
|
||||||
slot="media"
|
slot="media"
|
||||||
src={playerProps.src}
|
src={playerProps.src}
|
||||||
poster={playerProps.poster}
|
poster={playerProps.poster}
|
||||||
/>
|
/>
|
||||||
: <video
|
: <video
|
||||||
|
className="object-contain h-full aspect-video"
|
||||||
slot="media"
|
slot="media"
|
||||||
src={playerProps.src}
|
src={playerProps.src}
|
||||||
poster={playerProps.poster}
|
poster={playerProps.poster}
|
||||||
|
|
Loading…
Add table
Reference in a new issue