Skip to content

Commit

Permalink
Add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cantabile committed Apr 28, 2014
1 parent a7dc49c commit a587086
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions readme
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)

0 comments on commit a587086

Please sign in to comment.