You are not logged in.

#1 2008-10-08 19:00:42

braincenter
Member
From: Detroit
Registered: 2006-08-27
Posts: 26
Website

vlc upgrade split windows?

The latest vlc upgrade separates the video window from the controller which I can't stand.

I have gone thru all the gui preferences and cannot get the video embedded inside the controller using the classic look which I prefer.

Anyone have a solution ?

Offline

#2 2008-10-08 19:31:41

azleifel
Member
Registered: 2007-10-28
Posts: 486

Re: vlc upgrade split windows?

Seems that this was deliberate.  Take a look at http://forum.videolan.org/viewtopic.php?f=13&p=165045.

Last edited by azleifel (2008-10-08 19:32:22)

Offline

#3 2008-10-08 21:27:59

SyXbiT
Member
From: Seattle, WA
Registered: 2008-06-28
Posts: 177
Website

Re: vlc upgrade split windows?

good to know. i was trying to figure out how to change this back also smile

Offline

#4 2008-10-14 01:21:04

tehfishman
Member
Registered: 2008-03-04
Posts: 22

Re: vlc upgrade split windows?

VLC has really been irritating me lately.  First they decide to give it 27 dependancies in 0.9.2 (lolwtf), then they intentionally separate the output with 0.9.4.  What the heck are they doing?

Last edited by tehfishman (2008-10-14 01:25:57)

Offline

#5 2008-10-14 08:55:25

moljac024
Member
From: Serbia
Registered: 2008-01-29
Posts: 2,676

Re: vlc upgrade split windows?

tehfishman wrote:

VLC has really been irritating me lately.  First they decide to give it 27 dependancies in 0.9.2 (lolwtf), then they intentionally separate the output with 0.9.4.  What the heck are they doing?

Don't forget the switch from wxWidgets  to Qt.


The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...

Offline

#6 2008-10-14 09:23:51

b9anders
Member
Registered: 2007-11-07
Posts: 691

Re: vlc upgrade split windows?

moljac024 wrote:
tehfishman wrote:

VLC has really been irritating me lately.  First they decide to give it 27 dependancies in 0.9.2 (lolwtf), then they intentionally separate the output with 0.9.4.  What the heck are they doing?

Don't forget the switch from wxWidgets  to Qt.

One thing they did right.

Offline

#7 2008-10-14 20:36:31

coarseSand
Member
From: Ottawa, Canada
Registered: 2008-02-11
Posts: 203

Re: vlc upgrade split windows?

b9anders wrote:
moljac024 wrote:

Don't forget the switch from wxWidgets  to Qt.

One thing they did right.

Yeah, but at least Janus worked properly.


vim? EMACS? Pssh, I code in Scribus.

Offline

#8 2008-10-19 13:16:23

aantipop
Member
Registered: 2008-02-15
Posts: 46

Re: vlc upgrade split windows?

http://bazaar.launchpad.net/~motumedia/ … 7f4o0pq1-1

this patch applies to 0.9.4 and fixes the embedded video...
can someone contact the maintainer of vlc ?


rainbow networks - we bring colour to your gibs

Offline

#9 2008-10-19 16:02:59

creslin
Member
Registered: 2008-10-04
Posts: 241

Re: vlc upgrade split windows?

aantipop wrote:

http://bazaar.launchpad.net/~motumedia/ … 7f4o0pq1-1

this patch applies to 0.9.4 and fixes the embedded video...
can someone contact the maintainer of vlc ?

Thanks for the link.  The patch does fix the issue for me.  You can just build it yourself with this PKGBUILD for now (I saved the patch as qt4-embed.diff):

# $Id: PKGBUILD 14631 2008-10-08 20:16:01Z eric $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>

pkgname=vlc
pkgver=0.9.4
pkgrel=2
pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player"
arch=('i686' 'x86_64')
url="http://www.videolan.org/vlc/"
license=('GPL2')
depends=('libmad' 'libmpeg2' 'ffmpeg' 'hal' 'fluidsynth' \
         'libdvbpsi' 'fribidi' 'sysfsutils' 'libdvdnav' \
         'libmatroska' 'zvbi' 'libdvdread' 'libmpcdec' \
         'libdca' 'libxml2' 'lirc-utils' 'libcddb' 'libraw1394' \
         'smbclient' 'taglib'  'libmodplug' 'avahi' \
         'sdl_image' 'libshout' 'libnotify' 'lua' 'qt')
makedepends=('pkgconfig' 'live-media>=2008.09.02')
options=('!libtool')
source=(http://download.videolan.org/pub/videolan/vlc/${pkgver}/${pkgname}-${pkgver}.tar.bz2 \
        qt4-embed.diff)
md5sums=('786628aaf8f30a9b812975b67c88b971' \
         'aba27ce14900b82a84c08ef23d3c3eaf')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  patch -Np1 <../qt4-embed.diff || return 1

  sed -i -e 's:#include <vlc\/vlc.h>:#include <vlc/vlc.h> \n #include <locale.h>: ' modules/misc/freetype.c
  sed -i -e 's:/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf:/usr/share/fonts/TTF/VeraBd.ttf:' modules/misc/freetype.c
  [ "${CARCH}" = "i686" ] && EXTRAFEATURES="--enable-loader --enable-live555 --with-live555-tree=/usr/lib/live-media"
  [ "${CARCH}" = "x86_64" ] && EXTRAFEATURES="--enable-fast-install"
  ./configure --prefix=/usr --enable-dvdread --enable-dvdnav \
              --enable-madi --enable-ffmpeg --disable-rpath \
              --enable-qt4 --enable-faad --enable-alsa --enable-skins2 \
              --enable-dvb --enable-dmo --with-ffmpeg-faac \
              --with-ffmpeg-vorbis --with-ffmpeg-dts --with-ffmpeg-ogg \
              --with-ffmpeg-theora --enable-v4l --enable-theora \
              --enable-flac --enable-snapshot --enable-hal --enable-dbus \
              --enable-ogg --enable-dbus-control --enable-shared \
              --enable-nls --enable-lirc --enable-shout \
              --enable-debug --program-suffix= \
              --with-dv-raw1394=/usr/include/libraw1394 ${EXTRAFEATURES} || return 1
  make || return 1
  make DESTDIR=${pkgdir}/ install || return 1
  
  for res in 16 32 48; do
    install -D -m644 ${srcdir}/vlc-${pkgver}/share/vlc${res}x${res}.png \
             ${pkgdir}/usr/share/icons/hicolor/${res}x${res}/apps/vlc.png || return 1
  done
  rm -rf ${pkgdir}/usr/lib/mozilla
}

Last edited by creslin (2008-10-19 18:01:40)


ARCH|awesome3.0 powered by Pentium M 750 | 512MB DDR2-533 | Radeon X300 M
The journey is the reward.

Offline

#10 2008-10-19 16:36:47

lidewei
Member
From: The Netherlands
Registered: 2007-08-18
Posts: 27

Re: vlc upgrade split windows?

Thanks for the PKGBUILD.

Offline

Board footer

Powered by FluxBB