fix: use js lexer for extracting deobf func
- better deobfuscation error handling
This commit is contained in:
parent
8c7792ec53
commit
2d302d763d
9 changed files with 180 additions and 48 deletions
|
|
@ -55,6 +55,7 @@ pub struct VideoStream {
|
|||
pub mime: String,
|
||||
pub format: VideoFormat,
|
||||
pub codec: VideoCodec,
|
||||
pub throttled: bool,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
|
||||
|
|
@ -69,6 +70,7 @@ pub struct AudioStream {
|
|||
pub mime: String,
|
||||
pub format: AudioFormat,
|
||||
pub codec: AudioCodec,
|
||||
pub throttled: bool,
|
||||
}
|
||||
|
||||
#[derive(
|
||||
|
|
|
|||
Reference in a new issue