-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
cantabile
committed
Apr 28, 2014
1 parent
a7dc49c
commit a587086
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
WWXD is basically Xvid's frame type decision code stuffed into a VapourSynth | ||
plugin. | ||
|
||
The output is somewhat different from Scxvid's, because Xvid's decisions are | ||
also affected by data calculated while encoding frames. WWXD may miss more | ||
scene changes than Scxvid. It may also detect some that Scxvid missed. | ||
|
||
WWXD is considerably faster than Scxvid, possibly about six times. | ||
|
||
There is no log file. Instead, the frames are tagged with the property | ||
"SceneChange" (1 or 0). | ||
|
||
The license is the same as Xvid's, i.e. GPL2. | ||
|
||
To compile: | ||
gcc -o libwwxd.so -fPIC -shared -O2 -Wall -Wextra -Wno-unused-parameter $(pkg-config --cflags vapoursynth) src/wwxd.c src/detection.c | ||
|
||
To use: | ||
core.wwxd.WWXD(clip=src) |