点击或拖拽改变大小

VLCState 枚举

Note the order of libvlc_state_t enum must match exactly the order of

命名空间:  LibVLCSharp.Shared
程序集:  CPF.Vlc (在 CPF.Vlc.dll 中) 版本:0.8.8.5
语法
C#
public enum VLCState
成员
  成员名称说明
NothingSpecial0 Nothing special happening
Opening1 Opening media
Buffering2 Buffering media
Playing3 Playing media
Paused4 Paused media
Stopped5 Stopped media
Ended6 Ended media
Error7 Error media
备注

mediacontrol_PlayerStatus,

input_state_e enums,

and VideoLAN.LibVLCSharp.State (at bindings/cil/src/media.cs).

Expected states by web plugins are:

IDLE/CLOSE=0, OPENING=1, PLAYING=3, PAUSED=4,

STOPPING=5, ENDED=6, ERROR=7

参见