java 去水印,抖音去水印解析优米网

  java 去水印,抖音去水印解析优米网

  一、前言二。原则和步骤三。代码实现IV。摘要

  00-1010 Tik Tok的水印方法非常简单。之前没研究过,以为去除水印需要算法。直到我做了,才发现这么简单,不用编程就能做到。

  00-1010实际上,在Tik Tok有一个隐藏的无水印地址,只要我们找到那个地址。

  1.我们正在寻找一个Tik Tok的视频链接,我们想水印。

  注意:它必须以https开头,而不是密码。

  打开浏览器访问:

  访问结束后,您将被重定向到这个地址,后面是一串数字。这是视频的id。他根据这个唯一的id找到了播放的视频。

  按F12查看网络请求,找到刚才复制的请求地址,响应头有位置链接。请访问位置链接。

  https://www.iesdouyin.com/share/video/7064781119429807363/

  F12中有许多请求,其中之一是:

  找不到太多请求,所以您可以跳过它们。看着:https://aweme.snssdk.com,把身份证放回去。

  https://www.iesdouyin.com/web/api/v2/aweme/iteminfo/?item_ids=7064781119429807363

  用浏览器再次访问这个请求,然后返回一堆json数据。往下翻就能找到这个链接。

  https://aweme.snssdk.com/aweme/v1/playwm/?video _ id=v 0200 fg 10000 c 85 I 9 ejc 77 UE 0k B2 VO 80 ratio=720 pline=0

  用那个链接直接访问它,它实际上是一个带水印的链接。仔细观察,发现结尾有一段/playwm,有两个字母wm其实是水印英文单词的缩写。移除wm后,可以得到一个无水印链接。

  https://aweme.snssdk.com/aweme/v1/play/?video _ id=v 0200 fg 10000 c 85 I 9 ejc 77 UE 0k B2 VO 80 ratio=720 pline=0

  这里没有完成水印。

  00-1010这里我用Java来实现。这和语言无关,只要我能发出请求就行。

  /* * *下载Tik Tok水印无痕视频* * @ ThrowsioException */@ get mapping(value=/Downloaddy )Public Void Downloaddy(String Dy URL,HttpServletResponse response)抛出io exception { result to result dto=new result dto();请尝试{ dyUrl=URLDecoder.decode(dyUrl)。replace(dyUrl=, );result dto=dyParseUrl(dyUrl);} catch(Exception e){ e . printstacktrace();} if(result to . get video URL()。contains( http://){ result dto . set video URL(result dto . get video URL())。替换( http://, https://);} String video URL=result dto . getvideo URL();response . send redirect(video URL);} public result dto dyParseUrl(String redirect URL)抛出异常{ redirect URL=common utils . get location(redirect URL);result dto dy dto=new result dto();如果(!String utils.isempty(重定向)){/* * 1。用ItemId获取视频的详细信息,包括无水印视频URL */string ItemId=common utils . matchno(重定向

  Url); StringBuilder sb = new StringBuilder(); sb.append(CommonUtils.DOU_YIN_BASE_URL).append(itemId); String videoResult = CommonUtils.httpGet(sb.toString()); DYResult dyResult = JSON.parseObject(videoResult, DYResult.class); /** * 2、无水印视频 url */ String videoUrl = dyResult.getItem_list().get(0) .getVideo().getPlay_addr().getUrl_list().get(0) .replace("playwm", "play"); String videoRedirectUrl = CommonUtils.getLocation(videoUrl); dyDto.setVideoUrl(videoRedirectUrl); /** * 3、音频 url */ String musicUrl = dyResult.getItem_list().get(0).getMusic().getPlay_url().getUri(); dyDto.setMusicUrl(musicUrl); /** * 4、封面 */ String videoPic = dyResult.getItem_list().get(0).getVideo().getDynamic_cover().getUrl_list().get(0); dyDto.setVideoPic(videoPic); /** * 5、视频文案 */ String desc = dyResult.getItem_list().get(0).getDesc(); dyDto.setDesc(desc); } return dyDto; }ResultDto.java

  

public class ResultDto { private String videoUrl; //视频 private String musicUrl; //背景音乐 private String videoPic; //无声视频 private String desc; public String getDesc() { return desc; } public void setDesc(String desc) { this.desc = desc; } public String getVideoUrl() { return videoUrl; } public void setVideoUrl(String videoUrl) { this.videoUrl = videoUrl; } public String getMusicUrl() { return musicUrl; } public void setMusicUrl(String musicUrl) { this.musicUrl = musicUrl; } public String getVideoPic() { return videoPic; } public void setVideoPic(String videoPic) { this.videoPic = videoPic; }}

CommonUtils .java

 

  

public class CommonUtils { public static String DOU_YIN_BASE_URL = "https://www.iesdouyin.com/web/api/v2/aweme/iteminfo/?item_ids="; public static String HUO_SHAN_BASE_URL = " https://share.huoshan.com/api/item/info?item_id="; public static String DOU_YIN_DOMAIN = "douyin"; public static String HUO_SHAN_DOMAIN = "huoshan"; public static String getLocation(String url) { try { URL serverUrl = new URL(url); HttpURLConnection conn = (HttpURLConnection) serverUrl.openConnection(); conn.setRequestMethod("GET"); conn.setInstanceFollowRedirects(false); conn.setRequestProperty("User-agent", "ua");//模拟手机连接 conn.connect(); String location = conn.getHeaderField("Location"); return location; } catch (Exception e) { e.printStackTrace(); } return ""; } public static String matchNo(String redirectUrl) { List<String> results = new ArrayList<>(); Pattern p = Pattern.compile("video/([\w/\.]*)/"); Matcher m = p.matcher(redirectUrl); while (!m.hitEnd() && m.find()) { results.add(m.group(1)); } return results.get(0); } public static String hSMatchNo(String redirectUrl) { List<String> results = new ArrayList<>(); Pattern p = Pattern.compile("item_id=([\w/\.]*)&"); Matcher m = p.matcher(redirectUrl); while (!m.hitEnd() && m.find()) { results.add(m.group(1)); } return results.get(0); } public static String httpGet2(String urlStr) throws Exception { URL url = new URL(urlStr); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("GET"); conn.setRequestProperty("Content-Type", "text/json;charset=utf-8"); BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8")); StringBuffer buf = new StringBuffer(); String inputLine = in.readLine(); while (inputLine != null) { buf.append(inputLine).append("rn"); inputLine = in.readLine(); } in.close(); return buf.toString(); } /** * 使用Get方式获取数据 * * @param url URL包括参数,http://HOST/XX?XX=XX&XXX=XXX * @return */ public static String httpGet(String url) { String result = ""; BufferedReader in = null; try { URL realUrl = new URL(url); // 打开和URL之间的连接 URLConnection connection = realUrl.openConnection(); // 设置通用的请求属性 connection.setRequestProperty("accept", "*/*"); connection.setRequestProperty("connection", "Keep-Alive"); connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 建立实际的连接 connection.connect(); // 定义 BufferedReader输入流来读取URL的响应 in = new BufferedReader(new InputStreamReader( connection.getInputStream(), "UTF-8")); String line; while ((line = in.readLine()) != null) { result += line; } } catch (Exception e) { System.out.println("发送GET请求出现异常!" + e); e.printStackTrace(); } // 使用finally块来关闭输入流 finally { try { if (in != null) { in.close(); } } catch (Exception e2) { e2.printStackTrace(); } } return result; } public static String parseUrl(String url) { String host = ""; Pattern p = Pattern.compile("http[:/\w\.]+"); Matcher matcher = p.matcher(url); if (matcher.find()) { host = matcher.group(); } return host.trim(); } /** * 查找域名(以 https开头 com结尾) * * @param url * @return */ public static String getDomainName(String url) { String host = ""; Pattern p = Pattern.compile("https://.*\.com"); Matcher matcher = p.matcher(url); if (matcher.find()) { host = matcher.group(); } return host.trim(); }}

 

  

四、总结

其实看那个第二部分原理就行了是不是很简单?

 

  到此这篇关于Java实现超简单抖音去水印的示例详解的文章就介绍到这了,更多相关Java抖音去水印内容请搜索盛行IT以前的文章或继续浏览下面的相关文章希望大家以后多多支持盛行IT!

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: