This website requires JavaScript.
Explore
Help
Sign In
OpenCloud
/
PeerTube
mirror of
https://github.com/Chocobozzz/PeerTube
Watch
1
Star
0
Fork
You've already forked PeerTube
0
Code
Issues
Releases
Wiki
Activity
edbc932546
PeerTube
/
shared
/
models
/
videos
/
import
/
video-import-state.enum.ts
7 lines
92 B
TypeScript
Raw
Normal View
History
Unescape
Escape
Add ability to import video with youtube-dl
2018-08-02 15:34:09 +02:00
export
enum
VideoImportState
{
PENDING
=
1
,
SUCCESS
=
2
,
Add server plugin filter hooks for import with torrent and url (#2621) * Add server plugin filter hooks for import with torrent and url * WIP: pre and post-import filter hooks * Rebased * Cleanup filters to accept imports Co-authored-by: Chocobozzz <me@florianbigard.com>
2020-05-14 11:10:26 +02:00
FAILED
=
3
,
REJECTED
=
4
Add ability to import video with youtube-dl
2018-08-02 15:34:09 +02:00
}