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

  • Video Full Recompress (XVID)
  • XVID Popup Window During Recompress
  • Audio Compression: No Compression PCM
  • Save As AVI... 
  • Export WAV... 
  • Audio Direct Stream Copy 
  • Audio From Other File... 
  • Output Playback
  • Set Selection Start 
  • Set Selection End 
  • Delete Video Segment

What does not

  • Thread Priority During AVI Export

Workarounds

What was not tested

  • Audio Compression Using LAME, etc
  • Video Filters

Hardware tested

Graphics:

  • GPU:
  • Driver:

Additional Comments

I already had winetricks installed so I didn't test if it did not work without it. Used XVID installer from http://www.xvidmovies.com/codec/

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 
ShowopenSUSE 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