wmclear utility is able to automatically remove Windows Media Video script commands from WMV files.
wmreader utility is also included, which is able to extract Windows Media script commands and their timings from WMV files into an ordinary text file.
Categories
Video ConvertersLicense
GNU General Public License version 2.0 (GPLv2)Follow WMV script command conversion tool
Other Useful Business Software
Gen AI apps are built with MongoDB Atlas
MongoDB Atlas provides built-in vector search and a flexible document model so developers can build, scale, and run gen AI apps without stitching together multiple databases. From LLM integration to semantic search, Atlas simplifies your AI architecture—and it’s free to get started.
Rate This Project
Login To Rate This Project
User Reviews
-
The following patch fixes wmreader to dump the script command time markings, for switching slide show images. Looks like he's loosing the value of "asf_obj_header.obj_head + 0", as I see a value for this variable, but then it's lost after the cast to "*(unsigned int *)" --- wmclear/wmreader/wmreader.c 2006-11-24 06:05:12.000000000 -0900 +++ wmclear.mine/wmreader/wmreader.c 2013-12-14 10:56:48.170804715 -0900 @@ -152,7 +152,8 @@ // Print header information printf("\tObject size: %d\n", asf_obj_header.object_size[0]); - num_head_objects = *(unsigned int *)(asf_obj_header.obj_head + 0); + //num_head_objects = *(unsigned int *)(asf_obj_header.obj_head + 0); + num_head_objects = (asf_obj_header.obj_head + 0); printf("\tNumber of header objects: %d\n", num_head_objects);