Discover Packages
github.com/HongJungWan/ffmpeg-video-modules
internal
interfaces
dto
response
package
Version:
v0.0.0-...-2ae284d
Opens a new window with list of versions in this module.
Published: Aug 23, 2024
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type FinalVideoDetail struct {
ID int `json:"id"`
Filename string `json:"filename"`
FilePath string `json:"filePath"`
DownloadLink string `json:"downloadLink"`
}
type JobIDResponse struct {
JobID int `json:"jobID"`
}
type VideoDetailResponse struct {
ID int `json:"id"`
Filename string `json:"filename"`
FilePath string `json:"filePath"`
Duration int `json:"duration"`
Status string `json:"status"`
CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"`
TrimJobs []VideoJobDetail `json:"trimJobs,omitempty"`
ConcatJobs []VideoJobDetail `json:"concatJobs,omitempty"`
FinalVideoDetail *FinalVideoDetail `json:"finalVideoDetail,omitempty"`
}
type VideoDownloadResponse struct {
ID int `json:"id"`
Filename string `json:"filename"`
FilePath string `json:"filePath"`
DownloadLink string `json:"downloadLink"`
}
type VideoJobDetail struct {
ID int `json:"id"`
JobType string `json:"jobType"`
Parameters string `json:"parameters"`
Status string `json:"status"`
ResultFilePath string `json:"resultFilePath"`
}
type VideoResponse struct {
ID int `json:"id"`
Filename string `json:"filename"`
FilePath string `json:"filePath"`
Duration int `json:"duration"`
Status string `json:"status"`
CreatedAt time .Time `json:"createdAt"`
UpdatedAt time .Time `json:"updatedAt"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.