WineHQ

VirtualDub

No Screenshot

Submit Screenshot

Version 1.8.x - latest 1.8.8 is dated 2009-01-04

Application Details:

Version: 1.8.x
License: Open Source
URL: http://www.virtualdub.org/
Votes: Marked as obsolete
Latest Rating: Platinum
Latest Wine Version Tested: 1.1.18

Maintainers: About Maintainership

Free Download VirtualDub HomePage

Test Results

Old test results
The test results you have selected are very old and may not represent the current state of Wine.
Selected Test Results

What works

Everything, even the Deshaker works if you install the Microsoft Visual C++ 2005 SP1 Redistributable Package.
http://www.microsoft.com/downloads/details.aspx?familyid=200B2FD9-AE1A-4A14-984D-389C36F85647

As it is recommended on the official Deshaker website:
http://www.guthspot.se/video/deshaker.htm

What does not

About box background is black instead of grey...

Workarounds

What was not tested

Probably 90% of the application (all the filters, the hundreds of options, etc.).

Hardware tested

Graphics:

  • GPU:
  • Driver:

Additional Comments

selected in Test Results table below
Operating systemTest dateWine versionInstalls?Runs?Used
Workaround?
RatingSubmitter
CurrentUbuntu 8.04 "Hardy" i386 (+ variants like Kubuntu)Apr 12 20091.1.18Yes Yes Platinuman anonymous user 

Known Bugs

Bug # Description Status Resolution Other apps affected

Show all bugs

HowTo / Notes

Integrate into KDE context menu

To have a context menu in KDE (e.g. Dolphin):

  • add the following file:
    ~/.kde/share/kde4/services/ServiceMenus/virtualdub.service 

    (in KDE 5 moved to ~./local/share/kservices5/ServiceMenus)
[Desktop Entry]
Type=Service
ServiceTypes=KonqPopupMenu/Plugin
MimeType=video/*
Actions=Virtualdub;
#X-KDE-Submenu=Virtualdub
#X-KDE-Submenu[de]=
Encoding=UTF8

[Desktop Action Virtualdub]
Name=Compress using Virtualdub
Icon=video
Exec=~/bin/virtualdub.sh ~/path/default-compression.vcf "%f"
  • create a "default-compression.vcf" somewhere by Save processing settings... from Virtualdub. (includes current filters and codec settings)
  • add the following file, make it executable
    ~/bin/virtualdub.sh
#!/bin/bash

export WINEPREFIX=~/.wine
WINE=/usr/bin/wine 
VDUB=~$WINEPREFIX/drive_c/Progs/VirtualDub/VirtualDub.exe

VCF=$(winepath -w "$1")
JOBS=$(winepath -w ~/path/virtualdub.jobs)
VIDEO=$(winepath -w "$2")

#echo $WINE $VDUB /master $JOBS /s $VCF $VIDEO
$WINE $VDUB /master $JOBS /s $VCF $VIDEO

If you don't need compression presets, you may remove all VCF stuff. If you want to use the default JOBS file, you may remove all JOBS stuff.

Comments

Back