react-native-vlc-media-player icon indicating copy to clipboard operation
react-native-vlc-media-player copied to clipboard

Muted is not working

Open diego-layerx opened this issue 4 years ago • 1 comments

Hi guys, I'm working on a project that is using this package to stream videos.

I'm trying to mute the video, but it isn't working.

Does someone has implemented that property and had luck on it?

Below is my component:

<VLCPlayer
    style={[props.style, {height: height}]}
    videoAspectRatio="16:9"
    source={{uri: props.item[props.imageKey]}}
    // muted={props.item.muted}
    // muted
    muted={true}
    playInBackground={false}
    resizeMode="contain"
    seek={1}
/>

Thanks in advance!

Cheers

diego-layerx avatar Mar 09 '21 23:03 diego-layerx

Hi I implemented muted prop support for ios, pr was merged, should work now

SvitlanaTimofeyeva avatar Jul 29 '21 10:07 SvitlanaTimofeyeva