필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to play a map3 file and extract it from an Excel spreadsheet. If not, how can it be done?

조회 수: 1 (최근 30일)
Enrico
Enrico 2023년 3월 16일
마감: Stephen23 2023년 3월 16일
if strcmpi(UserSelection,'randomly')
Songlength = length(MusicDatabase);
Pickrand = randi([2,Songlength], 1,1);
fprintf("\t \n");
fprintf(' The information on the song selected by the software is the following: \n');
InfoSongName = MusicDatabase{Pickrand, 1};
fprintf( ' The song name is %s. \n', InfoSongName);
InfoSongSinger = MusicDatabase{Pickrand, 2};
fprintf(' The song singer is %s. \n', InfoSongSinger);
InfoSongTime = MusicDatabase{Pickrand, 3};
fprintf(" The song time is %s. \n", InfoSongTime);
InfoSongGenre = MusicDatabase{Pickrand, 4};
fprintf(' The song genre is %s. \n', InfoSongGenre);
InfoSongLanguage = MusicDatabase{Pickrand, 5};
fprintf(" The song langauge is %s. \n",InfoSongLanguage);
fprintf("\t \n");
UserRandSong = input(' Select Yes if desired to play song; if not select No. ','s');
while strcmpi(UserRandSong, 'Yes') ~=1 && strcmpi(UserRandSong, 'No') ~=1
fprintf(' Select Yes or No NERD!!! \n');
UserRandSong = input(' Select Yes if desired to play song; if not select No. ','s');
end
% My idea is the following since the variable with song equals a row in the Excel
% spreadsheet, column 7 of the same Excel spreadsheet is a link to the mp3 file.
% But I don't know how to implement it or if it works.

답변 (0개)

이 질문은 마감되었습니다.

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by