mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54: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
|
||||
breakpoints="md:480"
|
||||
defaultsubtitles="{{defaultsubtitles}}"
|
||||
defaultduration="{{defaultduration}}"
|
||||
gesturesdisabled="{{disabled}}"
|
||||
hotkeys="{{hotkeys}}"
|
||||
nohotkeys="{{nohotkeys}}"
|
||||
defaultstreamtype="on-demand"
|
||||
>
|
||||
<slot name="media" slot="media"></slot>
|
||||
|
|
|
@ -268,14 +268,16 @@ export const ReleasePlayerCustom = (props: {
|
|||
/>
|
||||
</div>
|
||||
{playerProps.useCustom ?
|
||||
<MediaThemeSutro className="w-full aspect-video">
|
||||
<MediaThemeSutro className="object-none w-full aspect-video">
|
||||
{playerProps.type == "hls" ?
|
||||
<HlsVideo
|
||||
className="object-contain h-full aspect-video"
|
||||
slot="media"
|
||||
src={playerProps.src}
|
||||
poster={playerProps.poster}
|
||||
/>
|
||||
: <video
|
||||
className="object-contain h-full aspect-video"
|
||||
slot="media"
|
||||
src={playerProps.src}
|
||||
poster={playerProps.poster}
|
||||
|
|
Loading…
Add table
Reference in a new issue