溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

微信小程序使用ColorUI實現(xiàn)一個去除皮皮蝦短視頻水印的功能

發(fā)布時間:2020-11-06 14:55:07 來源:億速云 閱讀:355 作者:Leah 欄目:開發(fā)技術(shù)

微信小程序使用ColorUI實現(xiàn)一個去除皮皮蝦短視頻水印的功能?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1.組件效果展示

微信小程序使用ColorUI實現(xiàn)一個去除皮皮蝦短視頻水印的功能

2.組件引入準(zhǔn)備

https://spider.apisev.cn加入合法request域名列表如果需要下載視頻功能的話,把https://v6-ppx.ixigua.com加入downloadFile合法域名列表樣式基于colorui,請在全局或者組件樣式文件內(nèi)引入colorui

3.組件引入并使用

組件建議在一個空白頁面進(jìn)行引入,配置json文件

 "navigationStyle": "custom"//自定義需要配置的內(nèi)容

或者也可以在全局引入該配置

"window": {
 "navigationStyle": "custom"
}

2.全局引入組件并使用

"usingComponents": {
 "spider":"components/spider/spider"
 }

在頁面中使用組件

<!--么錯,就是這么簡單-->
<spider>
</spider>

4.API構(gòu)建思路

  1. 根據(jù)短鏈接請求的response溯源視頻的item_id信息
  2. 配置合理的header置換真實的視頻地址
  3. 根據(jù)item_id請求api置換無水印視頻地址
  4. 請求結(jié)果存放在緩存中,如果短時間內(nèi)有類似查詢,可以迅速返回結(jié)果 age = 3600 * 24

不提供接口源碼,不做盈利使用,僅供皮友們學(xué)習(xí)娛樂

5.去水印插件

可以刪除uload,那是我自定義的loading動畫,可以使用 wx.showLoading來替代

spider.js

// components/spider/spider.js
Component({
 options: {
 addGlobalClass: true,
 multipleSlots: true
 },
 /**
 * 組件的屬性列表
 */
 properties: {

 },

 /**
 * 組件的初始數(shù)據(jù)
 */
 data: {
 url:'',
 vis:false,
 mname:'',
 videourl:''
 },

 /**
 * 組件的方法列表
 */
 methods: {
 hideModal(e) {
  this.setData({
  mname: null
  })
 },
 urlinput(e){
  this.setData({
  url:e.detail.value
  })
 },
 parse(){
  var url = this.data.url;
  this.setData({vis:true})
  wx.request({
  url: 'https://spider.apisev.cn/cvideo/v1/pipixia&#63;url='+url,
  success:res=>{
   console.log(res)
   this.setData({
   vis:false,
   mname:'bt',
   videourl:res.data.videourl
   })
  },
  fail:res=>{
   console.log(res)
  }
  })
 }
 }
})

spider.wxml

<cu-custom bgColor="bg-gradual-blue" isBack="{{true}}">
	<view slot="backText">返回</view>
	<view slot="content">去水印解析</view>
</cu-custom>
<view class="cu-form-group margin-top">
		<textarea maxlength="-1" disabled="{{modalName!=null}}" bindinput="urlinput" placeholder="請輸入視頻鏈接"></textarea>
</view>
<view class="padding flex flex-direction">
 <button class="cu-btn bg-green margin-tb-sm lg" bindtap="parse">解析</button>
</view>
<uload
visible="{{vis}}"
text="正在解析"
>
</uload>
<view class="cu-modal bottom-modal {{mname=='bt'&#63;'show':''}}">
 <view class="cu-dialog">
 <view class="cu-bar bg-white">
  <view class="action text-green">下載</view>
  <view class="action text-blue" bindtap="hideModal">關(guān)閉</view>
 </view>
 <view class="padding-xl">
  <video src="{{videourl}}" ></video>
 </view>
 </view>
</view>

關(guān)于微信小程序使用ColorUI實現(xiàn)一個去除皮皮蝦短視頻水印的功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI