?? test02.c
字號(hào):
#include <libming.h>#include <stdlib.h>int main() { SWFMovie m = newSWFMovieWithVersion(7); SWFSoundStream stream; int i; FILE *file; file = fopen(MEDIADIR "/video02.flv", "rb"); if(!file) { perror(MEDIADIR "/video02.flv"); return EXIT_FAILURE; } stream = newSWFSoundStream(file); if(!stream) { fprintf(stderr, "Could not create SWFSoundStream\n"); return EXIT_FAILURE; } SWFMovie_setSoundStream(m, stream); for(i = 0; i < 200; i++) SWFMovie_nextFrame(m); SWFMovie_save(m, "test02.swf"); return 0;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -