Music Player in C# Visual Studio By Rohit Programming Zone

Поделиться
HTML-код
  • Опубликовано: 18 сен 2024
  • In this video you will see ,How you can create a Music Player in C# Visual Studio By Rohit Programming Zone
    Resource Link 1-xpshort.com/D0...
    Link 2-drive.google.c...

Комментарии • 43

  • @wotmastersclub5559
    @wotmastersclub5559 2 месяца назад +1

    Круто 👍
    Видно что работает профессионал широкого спектра!
    Огромный респект разработчику за видео 👏

  • @HappySysiphus-b3w
    @HappySysiphus-b3w 3 месяца назад

    Thank you

  • @siddheshgaikwad5884
    @siddheshgaikwad5884 2 года назад

    💥💯

  • @luizero99
    @luizero99 2 года назад +4

    my visualization (bars) is not appearing, but it plays songs, what should i do?

  • @uscninja4190
    @uscninja4190 3 года назад +5

    Sir I am getting an error on 21:39 the lbl_track_end.Text line. It is showing 'Object reference not set to an instance of an object'.
    Sir how will I solve this error

  • @rhfin6275
    @rhfin6275 2 года назад

    great video!

  • @denizsozen360
    @denizsozen360 11 месяцев назад

    What do we do to get the music back when we close and open the form? / Formu kapatıp açtığımızda müziklerin geri gelmesi için napıcaz ??

  • @Rahmatulla9050
    @Rahmatulla9050 Год назад

    Ok

  • @jhonbravosullcapuma8364
    @jhonbravosullcapuma8364 2 года назад

    hay un pequeño error al cargar 2 a mas veces una lista de musica sale error ...... " the lbl_track_end.Text line. It is showing 'Object reference not set to an instance of an object'."

  • @АйжанУлукбекова
    @АйжанУлукбекова 5 месяцев назад

    Can you do exactly that, only in C++?

  • @jhonbravosullcapuma8364
    @jhonbravosullcapuma8364 2 года назад

    como hago que se reprodusca automáticamente una lista de música ??

  • @shuichiakaigaming
    @shuichiakaigaming 2 года назад +1

    Can you calculate the total time of the playlist? Also, can you show us how to play next track after another automatically?

    • @stevnichanimations
      @stevnichanimations 2 года назад +3

      // play next track after first track finished
      if (player.playState == WMPLib.WMPPlayState.wmppsPlaying)
      {
      if(p_bar.Value >= p_bar.Maximum)
      {
      btn_next.PerformClick();
      }
      }
      type in the timer tick

  • @elmoplusv4783
    @elmoplusv4783 3 месяца назад

    Puedes hacerlo en c++

  • @jhonbravosullcapuma8364
    @jhonbravosullcapuma8364 2 года назад

    me sale error en las fuentes a la hora de cargar

  • @AknaPelajar
    @AknaPelajar Год назад

    Sir, i got error System.IndexOutOfRangeException: 'Index was outside the bounds of the array.' when i played music with no cover album, how to solve this error?

    • @AknaPelajar
      @AknaPelajar Год назад

      when i use "if (player.playState==WMPLib.WMPPlayState.wmppsPlaying)" code block on trackList_SelectedIndexChanged method, it can play normally, but without the cover album displayed

    • @Ginger_Hrn
      @Ginger_Hrn Год назад

      solution:
      //Track_list
      private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
      {
      Player.URL = paths[Track_list.SelectedIndex];
      Player.Ctlcontrols.play();
      try
      {
      var file = TagLib.File.Create(paths[Track_list.SelectedIndex]);
      var bin = (byte[])(file.Tag.Pictures[0].Data.Data);
      Cover.Image = Image.FromStream(new MemoryStream(bin));
      }
      catch
      {
      Cover.Image = null;
      }
      }
      I did not get it right perhaps , can you give me some time stamps please

    • @AknaPelajar
      @AknaPelajar Год назад +1

      @@Ginger_Hrn thank you, your solution is helpful, i kinda need to change your code a little bit so that it fits to my code
      sorry for slow response, kinda busy a week before, the timestamps is : 28:02

    • @AknaPelajar
      @AknaPelajar Год назад +1

      @@Ginger_Hrn but there is another problem
      Player.URL = paths[Track_list.SelectedIndex]; have System.IndexOutOfRangeException: 'Index was outside the bounds of the array.' when adding more music to the music player, the adding was succesful but when it played, the exception occur
      is it possible to add more music to the media player? (the timestamps is 14:04)

    • @Ginger_Hrn
      @Ginger_Hrn Год назад +1

      @@AknaPelajar well sorry ... it's not possible because the search box of windows cannot hold its previous values so it will always give some exceptions.

  • @MADHURIKITCHEN9
    @MADHURIKITCHEN9 2 года назад

    First link is not working...then How We get stock images..

  • @silentwhisper5849
    @silentwhisper5849 Год назад

    Music Player is very Good! but I don't know how to create .dll file(display pic_art image)

    • @rohitprogrammer
      @rohitprogrammer  Год назад +1

      Hi
      To create a .dll file ..
      Open Visual Studio and create a new project.
      Select "Class Library" as the project type.
      Write your code and compile the project.
      The resulting .dll file can be found in the bin/Debug or bin/Release folder of your project.
      Note: The .dll file can be used as a reference in other projects, allowing you to reuse code.
      So you can simply download and use..

    • @silentwhisper5849
      @silentwhisper5849 Год назад

      @Rohit Programming Zone thank you very much! please have a nice day

  • @addhoardingprocrastinator
    @addhoardingprocrastinator 2 года назад

    visual studio 2010?

  • @mkrkls1756
    @mkrkls1756 3 года назад

    Hi Rohit, how can change speed ratio like volume

  • @Praveenbklingayat
    @Praveenbklingayat 3 года назад +1

    File isn't downloading

    • @rohitprogrammer
      @rohitprogrammer  3 года назад

      drive.google.com/file/d/14Xf6FH1I2nLaKxrSsEX4OCyAxQxj1sux/view?usp=sharing

  • @AshishKumar-zt5pt
    @AshishKumar-zt5pt 3 года назад

    Sir koi website bataiye jisme all media player controls icons ( combo) and images free me mil jaye

    • @rohitprogrammer
      @rohitprogrammer  3 года назад

      Link-1-www.flaticon.com
      Link-2-icons8.com

    • @AshishKumar-zt5pt
      @AshishKumar-zt5pt 3 года назад

      @@rohitprogrammer sir please Banifu ya Nuget custom progreesbar ko kaise download kre aur add kre plese bataye

  • @AshishKumar-zt5pt
    @AshishKumar-zt5pt 3 года назад

    File is not downloading