■ MediaElement 클래스를 사용해 동영상을 재생하는 방법을 보여준다.
▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="800" Height="600" Title="MediaElement 클래스 : 동영상 재생하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid Margin="10"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <MediaElement x:Name="mediaElement" Grid.Row="0" LoadedBehavior="Manual" UnloadedBehavior="Stop" /> <Slider x:Name="playTimeSlider" Grid.Row="1" Margin="0 10 0 10" /> <Grid Grid.Row="2"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="*" /> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <Label x:Name="playTimeLabel" Grid.Column="0" VerticalAlignment="Center" Content="00:00:00 / 00:00:00" /> <Button x:Name="playButton" Grid.Column="2" Margin="0 0 10 0" Width="30" Height="30" Background="#fffff8f8" Content="▶" /> <Button x:Name="stopButton" Grid.Column="3" Margin="0 0 10 0" Width="30" Height="30" Background="#fffff8f8" Content="■" /> <Button x:Name="pauseButton" Grid.Column="4" Margin="0 0 10 0" Width="30" Height="30" Background="#fffff8f8" Content="II" /> <Label Grid.Column="5" VerticalAlignment="Center" Margin="0 0 10 0" Content="소리" /> <Slider x:Name="volumeSlider" Grid.Column="6" VerticalAlignment="Center" Margin="0 0 10 0" Width="100" Height="20" Minimum="0" Maximum="1" LargeChange="0.1" Value="0.5" /> <Button x:Name="selectButton" Grid.Column="7" Width="90" Height="30" Background="White" Content="파일 선택" /> </Grid> </Grid> </Grid> </Window> |
▶ MainWindow.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
using Microsoft.Win32; using System; using System.Windows; using System.Windows.Controls.Primitives; using System.Windows.Threading; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 재상 시간 슬라이더 드래그 여부 /// </summary> private bool isPlayTimeSliderDragging = false; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); this.mediaElement.MediaOpened += mediaElement_MediaOpened; this.mediaElement.MediaEnded += mediaElement_MediaEnded; this.mediaElement.MediaFailed += mediaElement_MediaFailed; this.playTimeSlider.ValueChanged += playTimeSlider_ValueChanged; this.playButton.Click += playButton_Click; this.stopButton.Click += stopButton_Click; this.pauseButton.Click += pauseButton_Click; this.selectButton.Click += selectButton_Click; this.playTimeSlider.AddHandler ( Thumb.DragStartedEvent, new DragStartedEventHandler(playTimeSlider_DragStarted) ); this.playTimeSlider.AddHandler ( Thumb.DragCompletedEvent, new DragCompletedEventHandler(playTimeSlider_DragCompleted) ); this.volumeSlider.AddHandler ( Thumb.DragCompletedEvent, new DragCompletedEventHandler(volumeSlider_DragCompleted) ); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 미디어 엘리먼트 미디어 오픈시 처리하기 - mediaElement_MediaOpened(sender, e) /// <summary> /// 미디어 엘리먼트 미디어 오픈시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void mediaElement_MediaOpened(object sender, RoutedEventArgs e) { this.playTimeSlider.Minimum = 0; this.playTimeSlider.Maximum = this.mediaElement.NaturalDuration.TimeSpan.TotalSeconds; } #endregion #region 미디어 엘리먼트 미디어 종료시 처리하기 - mediaElement_MediaEnded(sender, e) /// <summary> /// 미디어 엘리먼트 미디어 종료시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void mediaElement_MediaEnded(object sender, RoutedEventArgs e) { this.mediaElement.Stop(); } #endregion #region 미디어 엘리먼트 미디어 실패시 처리하기 - mediaElement_MediaFailed(sender, e) /// <summary> /// 미디어 엘리먼트 미디어 실패시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void mediaElement_MediaFailed(object sender, ExceptionRoutedEventArgs e) { MessageBox.Show("재생시 에러 발생 : " + e.ErrorException.Message.ToString()); } #endregion #region 재생 시간 슬라이더 드래그 시작시 처리하기 - playTimeSlider_DragStarted(sender, e) /// <summary> /// 재생 시간 슬라이더 드래그 시작시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void playTimeSlider_DragStarted(object sender, DragStartedEventArgs e) { this.isPlayTimeSliderDragging = true; this.mediaElement.Pause(); } #endregion #region 재생 시간 슬라이더 드래그 완료시 처리하기 - playTimeSlider_DragCompleted(sender, e) /// <summary> /// 재생 시간 슬라이더 드래그 완료시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void playTimeSlider_DragCompleted(object sender, DragCompletedEventArgs e) { this.mediaElement.Position = TimeSpan.FromSeconds(this.playTimeSlider.Value); this.mediaElement.Play(); this.isPlayTimeSliderDragging = false; } #endregion #region 재생 시간 슬라이더 값 변경시 처리하기 - playTimeSlider_ValueChanged(sender, e) /// <summary> /// 재생 시간 슬라이더 값 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void playTimeSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e) { if(this.mediaElement.Source == null) { return; } this.playTimeLabel.Content = string.Format ( "{0} / {1}", this.mediaElement.Position.ToString(@"mm\:ss"), this.mediaElement.NaturalDuration.TimeSpan.ToString(@"mm\:ss") ); } #endregion #region 재생 버튼 클릭시 처리하기 - playButton_Click(sender, e) /// <summary> /// 재생 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void playButton_Click(object sender, RoutedEventArgs e) { if(this.mediaElement.Source == null) { return; } this.mediaElement.Play(); } #endregion #region 중단 버튼 클릭시 처리하기 - stopButton_Click(sender, e) /// <summary> /// 중단 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void stopButton_Click(object sender, RoutedEventArgs e) { if(this.mediaElement.Source == null) { return; } this.mediaElement.Stop(); } #endregion #region 중지 버튼 클릭시 처리하기 - pauseButton_Click(sender, e) /// <summary> /// 중지 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void pauseButton_Click(object sender, RoutedEventArgs e) { if(this.mediaElement.Source == null) { return; } this.mediaElement.Pause(); } #endregion #region 볼륨 슬라이더 드래그 완료시 처리하기 - volumeSlider_DragCompleted(sender, e) /// <summary> /// 볼륨 슬라이더 드래그 완료시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void volumeSlider_DragCompleted(object sender, DragCompletedEventArgs e) { this.mediaElement.Volume = this.volumeSlider.Value; } #endregion #region 파일 선택 버튼 클릭시 처리하기 - selectButton_Click(sender, e) /// <summary> /// 파일 선택 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void selectButton_Click(object sender, RoutedEventArgs e) { OpenFileDialog openFileDialog = new OpenFileDialog() { Filter = "모든 파일 (*.*)|*.*", DefaultExt = ".avi", Multiselect = false }; if(openFileDialog.ShowDialog() == true) { this.mediaElement.Source = new Uri(openFileDialog.FileName); this.mediaElement.Volume = 0.5; this.mediaElement.SpeedRatio = 1; DispatcherTimer dispatcherTimer = new DispatcherTimer() { Interval = TimeSpan.FromSeconds(1) }; dispatcherTimer.Tick += dispatcherTimer_Tick; dispatcherTimer.Start(); this.mediaElement.Play(); } } #endregion #region 디스패처 타이머 틱 처리하기 - dispatcherTimer_Tick(sender, e) /// <summary> /// 디스패처 타이머 틱 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void dispatcherTimer_Tick(object sender, EventArgs e) { if(this.isPlayTimeSliderDragging) { return; } if(this.mediaElement.Source == null || !this.mediaElement.NaturalDuration.HasTimeSpan) { this.playTimeLabel.Content = "선택된 파일이 없습니다..."; return; } this.playTimeSlider.Value = this.mediaElement.Position.TotalSeconds; } #endregion } } |