Is it possible to create a hyperlink for a video?
Ältere Kommentare anzeigen
I am dealing with video search algorithm. When i get a list of names of videos from the database which have matched with query video, I want it to display that video by clicking of the name of video. Is it possible to do this using hyperlink? Please need help on this. Thank you in advance
Antworten (3)
Jan
am 6 Jun. 2015
0 Stimmen
Where yhould the hyperlinks appear? In the command window or in a figure, in a created PDF file?
Where should the video be displayed? By Matlabs movie command or in an external viewer?
1 Kommentar
DIVYA RAIBAGKAR
am 7 Jun. 2015
Walter Roberson
am 6 Jun. 2015
0 Stimmen
2 Kommentare
DIVYA RAIBAGKAR
am 7 Jun. 2015
Walter Roberson
am 7 Jun. 2015
Yes, no problem. You just have to include the HTML wrapper on every string. See for example http://www.mathworks.com/matlabcentral/answers/25038-how-to-change-each-cell-color-in-a-uitable
Jan
am 7 Jun. 2015
You can create strings, which looks like hyper links in an uitable:
a = uitable('Data', {'<HTML><a href="matlab:disp(clock)">clock</a>', 'b'; ...
'c', 'd'})
But this does not evaluate the command. So you have to catch this in the CellSelectionCallback, such that the command to display the image is started from there.
Kategorien
Mehr zu Video Formats and Interfaces finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!