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
Enterprise-grade ITSM, for every business
Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
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);