| | |
| | | package com.iplatform.recvideo; |
| | | |
| | | import com.iplatform.model.po.Rc_video_t1; |
| | | import com.iplatform.recvideo.util.PythonInvokeUtils; |
| | | import com.iplatform.recvideo.util.VideoFileUtils; |
| | | import org.junit.Test; |
| | | import org.springframework.web.client.RestTemplate; |
| | | |
| | | import java.util.List; |
| | | |
| | | public class VideoSimilarTest { |
| | | |
| | | @Test |
| | | public void testPythonSearch() throws Exception{ |
| | | String url = "http://121.36.40.27:12345/ai/video/search_img"; |
| | | RestTemplate restTemplate = new RestTemplate(); |
| | | List<Rc_video_t1> data = PythonInvokeUtils.acquireImageSearchResult("landscape_01" |
| | | , "/opt/ai/video/20220921/landscape_01/landscape_01_1.jpg", "30", url, restTemplate); |
| | | if(data != null){ |
| | | for(Rc_video_t1 e : data){ |
| | | System.out.println(e); |
| | | } |
| | | } |
| | | } |
| | | |
| | | // @Test |
| | | public void testGetVideoId(){ |
| | | String id = PythonInvokeUtils.getFileNameWithoutSuffix("/opt/ai/video/20220921/landscape_01.mp4", Constants.VIDEO_SUFFIX); |
| | | System.out.println(id); |
| | | } |
| | | |
| | | // @Test |
| | | public void testVideoFolderInfo(){ |
| | | List<VideoFolderInfo> list = VideoFileUtils.getBatchVideoFolderInfo("D:/dev_tools/ai", "video"); |
| | | if(list != null){ |