Click here to Skip to main content
Licence CPOL
First Posted 20 Oct 2005
Views 24,831
Downloads 808
Bookmarked 19 times

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

By | 20 Oct 2005 | Article
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).

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)

About the Author

Marco Roello

Web Developer

Italy Italy

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralReferences Missing Pinmemberwjones2308773:14 20 Oct '05  
GeneralRe: References Missing PinmemberMarco Roello5:40 20 Oct '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 20 Oct 2005
Article Copyright 2005 by Marco Roello
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid