You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to save the video as mp4 file, how to set the video parameters for the vlc use wcjs-player. I looked at the implementation of addPlaylist not sure whether to pass it。please help me 。thank you
The text was updated successfully, but these errors were encountered:
I already know how to save the video stream use wcjs-player。Use the following way
`
<script>
var wjs = require("wcjs-player");
var player = new wjs("#player").addPlayer({
autoplay: true,
wcjs: require('webchimera.js')
});
var playerUrl = [{
url: "file:///E:/xiamu.flv",
vlcArgs: ":sout=#duplicate{dst=file{dst=F:\\2.mp4,no-overwrite},dst=display} :sout-all :sout-keep"
}];
var playlist = player.addPlaylist(playerUrl);
</script>
`
thank you very much。
I want to save the video as mp4 file, how to set the video parameters for the vlc use wcjs-player. I looked at the implementation of addPlaylist not sure whether to pass it。please help me 。thank you
The text was updated successfully, but these errors were encountered: