WineHQ

VirtualDub

Version 1.9.x - latest 1.9.11 is dated 2010-12-24

Application Details:

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

Maintainers: About Maintainership

Free Download VirtualDub download at Sourceforge

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

Tested VirtualDub with deshaker plugin.

What does not

Installation is tricky - see extra comments.

Workarounds

What was not tested

Only tested VirtualDub with deshaker plugin to automatically deshake a directory of videos to an XviD format.

Hardware tested

Graphics:

  • GPU:
  • Driver:

Additional Comments

Additional Comments Tested openSUSE-11.1 and 64-bit openSUSE-11.2 with wine-1.1.44-1.1 running VirtualDub 1.9.7 and 1.9.8. Setup a bit tricky. Read here for details: http://forums.opensuse.org/new-user-how-faq-read-only/unreviewed-how-faq/429428-howto-install-virtualdub-under-wine-deshaker-plugin.html

selected in Test Results table below
Operating systemTest dateWine versionInstalls?Runs?Used
Workaround?
RatingSubmitter
ShowUbuntu 13.04 "Raring" i386 (+ variants like Kubuntu)Oct 02 20131.6Yes Yes Platinuman anonymous user 
ShowMac OS X 10.7 "Lion"Jan 09 20131.5.21Yes Yes Goldan anonymous user 
ShowSlackware 13.1Jul 22 20101.2N/A Yes Platinuman anonymous user 
CurrentopenSUSE 11.2 x86_64Jun 27 20101.1.44N/A Yes Goldan anonymous user 
ShowopenSUSE 11.2 x86_64Dec 26 20091.1.35Yes Yes Goldan 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