Click here to Skip to main content
15,881,173 members
Articles / Programming Languages / C#

AviScreensaver: A C# screensaver that allows you to play your favourites media files

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
20 Oct 2005CPOL 40.3K   1.4K   22   2
The screensaver plays from 1 to 16 video (or media files) simultaneously.

Sample Image - AviScreenSaver.jpg

Introduction

A screensaver consists of a form that can load from 1 to 16 Windows MediaPlayer controls. Each MediaPlayer control loads media files selected by the user, stores them in a random playlist, and then plays all the media Files. It can play all Windows Media Player supported formats (video files, image files, music).

C#
private void ScreenSaverForm_Load(object sender, System.EventArgs e)
{
   Cursor.Hide();
   TopMost = true;
   
   // uso playlist perchè in futuro potrò selezionare più files
   string playlistName;
   string playlistBase = "ABU Video ScreenSaver Playlist";
   string[] selectedfiles = null;
   if (this.ScreenSettings.FileToPlay != String.Empty)
      selectedfiles = this.ScreenSettings.FileToPlay.Split(',');
 
   string[] folderFiles = 
       this.GetFolderFiles(this.ScreenSettings.FolderToPlay);
   
   int len = 0;
   
   if (selectedfiles != null)
      len += selectedfiles.Length;
   if (folderFiles!=null)
      len += folderFiles.Length;
   string[] files = new string[len];
   
   int startIndex = 0;
   if (selectedfiles != null)
   {
      selectedfiles.CopyTo(files, startIndex);
      startIndex = selectedfiles.Length;
   }
   // aggiungo i files della cartella
   if (folderFiles!=null)
      folderFiles.CopyTo(files, startIndex);
   // randomizzo
   string[] filesShuffled;
   
   // nota bene:
   // anche se posso gestire più riquadri video
   // in questo momento ne uso sempre e SOLO 1
   // perchè media player si arrabbia con più video in simultanea
   int cnt = 0;
   foreach (UserControl c in this.panelVideo.Controls)
   {
      cnt++;
      playlistName = playlistBase + cnt.ToString();
      if (this.ScreenSettings.Shuffle)
         filesShuffled = Shuffle(files);
      else
         filesShuffled = files;
      VideoFrame vfr = (VideoFrame)c;
      Microsoft.MediaPlayer.Interop.IWMPPlaylist pl;
   
      pl = vfr.axWindowsMediaPlayer.mediaCollection.getByName(playlistName);
      if (pl != null)
         pl.clear();
      else
         pl = vfr.axWindowsMediaPlayer.playlistCollection.newPlaylist(
                                       playlistName);
    
      for(int i=0; i<=filesShuffled.Length-1; i++)
      {
         if (System.IO.File.Exists(filesShuffled[i]))
         {
            Microsoft.MediaPlayer.Interop.IWMPMedia m = 
                 vfr.axWindowsMediaPlayer.newMedia(filesShuffled[i]);
            pl.appendItem(m);
         }
      }
    
      vfr.axWindowsMediaPlayer.currentPlaylist = pl;
   }
   // lancio i play tutti insieme
   foreach (UserControl c in this.panelVideo.Controls)
   {
      VideoFrame vfr = (VideoFrame)c;
      vfr.axWindowsMediaPlayer.Ctlcontrols.play();
   }
}

Requisite

Windows Media Player 9 or greater.

Updates / Fixes

  • 21/10/2005: Changed form options language to English; fixed setup project that wasn't deploying a DLL.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralReferences Missing Pin
wjones197720-Oct-05 3:14
wjones197720-Oct-05 3:14 
GeneralRe: References Missing Pin
Marco Roello20-Oct-05 5:40
Marco Roello20-Oct-05 5:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.