shikeying
2022-09-27 26f5dd8ef80e5671cda8fc0e6c0d0298c4e678ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<p> </p>
 
<table style="width: 90%;">
    <tr>
        <td style="width: 20%; vertical-align: top;"><h4>选择源视频:${select_id}<br></h4></td>
        <td style="width:10%;"></td>
        <td style="vertical-align: top;"><h4>相似视频集合</h4></td>
    </tr>
</table>
 
<table style="width: 90%;">
    <tr>
        <td style="width: 20%; vertical-align: top;">
            <table style="width: 90%;">
                <#list src_list as obj>
                    <tr>
                        <td>
                            <video id="my-video" class="video-js vjs-big-play-centered" controls="controls" poster="" width="320" height="180">
                                <source src="/video_ui/get_video?id=${obj.src_video_id}" type='video/mp4'>
                            </video>
                            <br> ${obj.src_video_id} <a href="/video_ui/index?id=${obj.src_video_id}">检索相似</a>
                            <p> </p>
                        </td>
                    </tr>
                </#list>
            </table>
        </td>
        <td style="width:10%;"></td>
        <td style="vertical-align: top;">
            <table style="width: 90%;">
                <#list similar_list as sim>
                    <tr>
                        <td>
                            <video id="my-video" class="video-js vjs-big-play-centered" controls="controls" poster="" width="320" height="180">
                                <source src="/video_ui/get_video?id=${sim.sim_video_id}" type='video/mp4'>
                            </video>
                            <br> ${sim.sim_video_id} 得分: ${sim.score}
                            <p> </p>
                        </td>
                    </tr>
                </#list>
            </table>
        </td>
    </tr>
</table>
</body>
</html>