<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
抖音去水印方法很簡單,以前一直沒有去研究,以為搞個去水印還要用到演演算法去除,直到動手的時候才發現這麼簡單,不用程式設計基礎都能做。
其實抖音它是有一個隱藏無水印地址的,只要我們找到那個地址就可以了
1、我們在抖音找一個想要去水印的視訊連結
注意:這裡一定要是https開頭的,不是口令
開啟瀏覽器存取:
存取之後會重定向到這個地址,後面有一串數位,這個就是視訊的id,他是根據這個唯一id來找到視訊播放的
按F12檢視網路請求,找到剛剛複製的那個請求地址,在響應頭裡有一個location連結,存取location的連結
https://www.iesdouyin.com/share/video/7064781119429807363/
在F12中有許多請求,檢視眾多的請求裡有一個請求是:
請求太多沒找到可以直接跳過,直接看:https://aweme.snssdk.com 這個就行了,把id替換一下
https://www.iesdouyin.com/web/api/v2/aweme/iteminfo/?item_ids=7064781119429807363
把這個請求再次用瀏覽器存取,然後返回了一大串json資料,一直放下翻可以找到這個連結
https://aweme.snssdk.com/aweme/v1/playwm/?video_id=v0200fg10000c85i9ejc77ue0kb2vo80&ratio=720p&line=0
直接用那個連結存取,他其實是一個有水印的連結,仔細觀察發現最後那裡有一段/playwm
,有兩個字母wm其實就是watermark英語單詞的縮寫,去掉wm後就能得到一個無水印連結了
https://aweme.snssdk.com/aweme/v1/play/?video_id=v0200fg10000c85i9ejc77ue0kb2vo80&ratio=720p&line=0
到這裡無水印已經完成了
這裡我用的是Java去實現,這個跟語言無關,只要能發請求就行
/** * 下載抖音無水印視訊 * * @throws IOException */ @GetMapping(value = "/downloadDy") public void downloadDy(String dyUrl, HttpServletResponse response) throws IOException { ResultDto resultDto = new ResultDto(); try { dyUrl = URLDecoder.decode(dyUrl).replace("dyUrl=", ""); resultDto = dyParseUrl(dyUrl); } catch (Exception e) { e.printStackTrace(); } if (resultDto.getVideoUrl().contains("http://")) { resultDto.setVideoUrl(resultDto.getVideoUrl().replace("http://", "https://")); } String videoUrl = resultDto.getVideoUrl(); response.sendRedirect(videoUrl); } public ResultDto dyParseUrl(String redirectUrl) throws Exception { redirectUrl = CommonUtils.getLocation(redirectUrl); ResultDto dyDto = new ResultDto(); if (!StringUtils.isEmpty(redirectUrl)) { /** * 1、用 ItemId 拿視訊的詳細資訊,包括無水印視訊url */ String itemId = CommonUtils.matchNo(redirectUrl); 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抖音去水印內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45