diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2004-11-22 20:26:08 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2004-11-22 20:26:08 +0000 |
commit | 36f202a25988a8a1e7b0388eedc23ab6b1d4c108 (patch) | |
tree | baf33e4d173d580b96190032480fbed7f724480e /multimedia/handbrake-gtk2/files/patch-gtk2_main.c | |
parent | Fixed memory leak. (diff) |
HandBrake is a GPL'd multi-platform, multithreaded DVD to MPEG-4 ripper and
converter. HandBrake was originally available on the BeOS, but now has been
ported over to MacOS X, GNU/Linux and FreeBSD.
Features:
* Can encode directly from DVDs (even encrypted ones) or from
VIDEO_TS folders
* Supports AC3, LPCM and MPEG audio tracks
* Outputs MP4, AVI or OGM files
* Outputs AAC, MP3 or Vorbis audio
* Supports 2-pass encoding
* Supports encoding of two audio tracks
* Includes a bitrate calculator
* Supports picture deinterlacing, cropping and scaling
Known limitations:
* Does not handle DTS audio tracks
* Does not handle single VOB files or any other file format
WWW: http://handbrake.m0k.org/
PR: 74214
Submitted by: Andrew Thompson
Approved by: adamw (mentor)
Notes
Notes:
svn path=/head/; revision=122167
Diffstat (limited to 'multimedia/handbrake-gtk2/files/patch-gtk2_main.c')
-rw-r--r-- | multimedia/handbrake-gtk2/files/patch-gtk2_main.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/multimedia/handbrake-gtk2/files/patch-gtk2_main.c b/multimedia/handbrake-gtk2/files/patch-gtk2_main.c new file mode 100644 index 000000000000..e093de43990f --- /dev/null +++ b/multimedia/handbrake-gtk2/files/patch-gtk2_main.c @@ -0,0 +1,10 @@ +--- gtk2/main.c.orig Sat Nov 20 19:20:18 2004 ++++ gtk2/main.c Sat Nov 20 19:21:02 2004 +@@ -85,6 +85,7 @@ + + /* build dvd list */ + items = g_list_append (items, "" ); ++ items = g_list_append (items, "/dev/%%DVD_DEVICE%%" ); + items = g_list_append (items, "/dev/dvd" ); + gtk_combo_set_popdown_strings( GTK_COMBO(lookup_widget( hb_win_main, "combo1") ), items ); + |