fix tiktok download restrictions
This commit is contained in:
parent
c17c4e9050
commit
e4cfa15efc
6 changed files with 73 additions and 5 deletions
|
|
@ -0,0 +1,7 @@
|
|||
package com.ss.android.ugc.aweme.base.model;
|
||||
import java.util.List;
|
||||
|
||||
public class UrlModel {
|
||||
public List<String> getUrlList() { throw new UnsupportedOperationException("Stub"); }
|
||||
public String getUri() { throw new UnsupportedOperationException("Stub"); }
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package com.ss.android.ugc.aweme.feed.model;
|
||||
import com.ss.android.ugc.aweme.base.model.UrlModel;
|
||||
|
||||
public class Video {
|
||||
public VideoUrlModel playAddr;
|
||||
public VideoUrlModel h264PlayAddr;
|
||||
public UrlModel downloadNoWatermarkAddr;
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package com.ss.android.ugc.aweme.feed.model;
|
||||
import com.ss.android.ugc.aweme.base.model.UrlModel;
|
||||
|
||||
public class VideoUrlModel extends UrlModel {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue