You are not logged in.

#76 2009-01-05 08:04:46

vr4b4c
Member
Registered: 2008-12-30
Posts: 37

Re: [Request]MPlayer with vdpau support?

buddabrod wrote:

It's here http://rafb.net/p/TpboNR42.html
I think there wont be a prebuilt x86_64 version soon although I'm the kdemod-legacy maintainer for this architecture. Since the system b0rked I didnt find the time and motivation to set up another one (should only take 30-60 min, though).

Thnx for PKGBUILD i will give a try to it.
Altrough i tried yesterday one from AUR and it was missing depends "cvs" then it couldnt make Makefile.in ... I just install core system without anything and then devel stuff. You are missing it to, well i dont know if I should install some extra base for more "devel" stuff but... I wanna make small distro thats the reason maybe of missing such tools.

Thnx anyway.

Offline

#77 2009-01-05 08:26:59

buddabrod
Member
From: Germany
Registered: 2007-02-25
Posts: 220

Re: [Request]MPlayer with vdpau support?

Hm. I thought I added cvs to makedepends xD Ok then I wanted to but obviously forgot. Add it yourself, after building and installing you can just remove the packages pacman -Qdt shows you. This way the system stays small and clean wink

Offline

#78 2009-01-05 14:13:01

bgmiki
Member
Registered: 2008-09-24
Posts: 26

Re: [Request]MPlayer with vdpau support?

if some1 want to use smplayer+mplayer-vdpau+subtitle just read my post here http://smplayer.berlios.de/forums/viewt … 4224#p4224

Last edited by bgmiki (2009-01-05 14:17:56)

Offline

#79 2009-01-05 16:07:52

buddabrod
Member
From: Germany
Registered: 2007-02-25
Posts: 220

Re: [Request]MPlayer with vdpau support?

Great thing, it works like a charm. Thx bgmiki!

Offline

#80 2009-01-05 17:05:05

bgmiki
Member
Registered: 2008-09-24
Posts: 26

Re: [Request]MPlayer with vdpau support?

np smile

Offline

#81 2009-01-05 20:20:57

Roberth
Member
From: The Pale Blue Dot
Registered: 2007-01-12
Posts: 894

Re: [Request]MPlayer with vdpau support?


Use the Source, Luke!

Offline

#82 2009-01-05 20:44:35

bgmiki
Member
Registered: 2008-09-24
Posts: 26

Re: [Request]MPlayer with vdpau support?

http://git.ffmpeg.org/?p=ffmpeg;a=commi … 6eb68c5046
if some1 have repo please made package for i686 and x64

Last edited by bgmiki (2009-01-05 20:46:21)

Offline

#83 2009-01-05 21:07:27

Roberth
Member
From: The Pale Blue Dot
Registered: 2007-01-12
Posts: 894

Re: [Request]MPlayer with vdpau support?

bgmiki, its still not ready for use....


Use the Source, Luke!

Offline

#84 2009-01-06 21:23:45

Roberth
Member
From: The Pale Blue Dot
Registered: 2007-01-12
Posts: 894

Re: [Request]MPlayer with vdpau support?


Use the Source, Luke!

Offline

#85 2009-01-07 18:41:15

Roberth
Member
From: The Pale Blue Dot
Registered: 2007-01-12
Posts: 894

Re: [Request]MPlayer with vdpau support?

Someone know how to do that?


Use the Source, Luke!

Offline

#86 2009-01-08 06:27:56

buddabrod
Member
From: Germany
Registered: 2007-02-25
Posts: 220

Re: [Request]MPlayer with vdpau support?

Roberth wrote:

Someone know how to do that?

Where is the Problem? Creating a PKGBUILD should be simple. I have no need for it now so I didnt create one.

Offline

#87 2009-01-08 07:08:33

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: [Request]MPlayer with vdpau support?

This works for me. ***There are no output drivers yet. ***

pkgname=ffmpeg-svn
pkgver=16494
pkgrel=1
pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix"
arch=('i686' 'x86_64')
url="http://ffmpeg.mplayerhq.hu/"
license=('GPL')
depends=('sdl' 'faac' 'zlib' 'imlib2' 'x264')
makedepends=('subversion')
provides=("ffmpeg=`date +%Y%m%d`")
conflicts=('ffmpeg')
source=()
md5sums=()

_svntrunk=svn://svn.ffmpeg.org/ffmpeg/trunk
_svnmod=ffmpeg

build() {
  cd $startdir/src

  if [ -d $_svnmod/.svn ]; then
    (cd $_svnmod && svn up -r $pkgver)
  else
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
  fi

  msg "SVN checkout done or server timeout"
  msg "Starting make..."

  cp -r $_svnmod $_svnmod-build
  cd $_svnmod-build

  ./configure --prefix=/usr \
              --enable-gpl \
              --enable-libfaac \
              --enable-libx264 \
              --enable-shared \
              --disable-static \
              --enable-pthreads \
              --enable-network \
              --enable-x11grab \
              --enable-xvmc \
              --enable-postproc \
              --enable-avfilter \
              --enable-avfilter-lavf \
              --enable-vdpau \
              --enable-swscale

  make || return 1

  make DESTDIR=$startdir/pkg install || return 1

  mkdir -p $startdir/pkg/usr/share/ffmpeg

  install -m644 ffpresets/*.ffpreset $startdir/pkg/usr/share/ffmpeg

  rm -rf ../$_svnmod-build
}

Offline

#88 2009-01-15 10:17:53

buddabrod
Member
From: Germany
Registered: 2007-02-25
Posts: 220

Re: [Request]MPlayer with vdpau support?

A x86_64 repo will be up today, you can check it out like the i686 one.

Add
i686

[vdpau-repo]
Server = http://www-user.rhrk.uni-kl.de/~dbrendel/repo/i686

x86_64

[vdpau-repo]
Server = http://www-user.rhrk.uni-kl.de/~dbrendel/repo/x86_64

to your /etc/pacman.conf

Edit: Just a note: nvidia from i686 is build against kernel26-2.6.28 and the one in x86_64 is built against kernel26 from core. I thought 2.6.28 would be in core sooner..

Last edited by buddabrod (2009-01-15 11:22:12)

Offline

#89 2009-01-15 20:08:45

venky80
Member
Registered: 2007-05-13
Posts: 1,002

Re: [Request]MPlayer with vdpau support?

these repository dont work?


Acer Aspire V5-573P Antergos KDE

Offline

#90 2009-01-15 20:51:13

buddabrod
Member
From: Germany
Registered: 2007-02-25
Posts: 220

Re: [Request]MPlayer with vdpau support?

venky80 wrote:

these repository dont work?

They do for me. As I said already, you cannot list the files on the server since I have no permission to allow that. You can just add it to your pacman.conf and use it.

Your post was rather useless btw. since it contains virtually no information.

Offline

#91 2009-01-15 22:21:19

venky80
Member
Registered: 2007-05-13
Posts: 1,002

Re: [Request]MPlayer with vdpau support?

buddabrod wrote:
venky80 wrote:

these repository dont work?

They do for me. As I said already, you cannot list the files on the server since I have no permission to allow that. You can just add it to your pacman.conf and use it.

Your post was rather useless btw. since it contains virtually no information.

Thanks yeah i was trying to see the packages in the server..it works now.


Acer Aspire V5-573P Antergos KDE

Offline

#92 2009-01-15 22:25:25

buddabrod
Member
From: Germany
Registered: 2007-02-25
Posts: 220

Re: [Request]MPlayer with vdpau support?

Nice to hear :-)

As of now the xine implementation should be able to playback all important containers and formats. Have fun :-)

Offline

#93 2009-01-15 22:35:18

venky80
Member
Registered: 2007-05-13
Posts: 1,002

Re: [Request]MPlayer with vdpau support?

would the mplayer plugin work with this? will i be able to run the videos from my desktop, I am asking since it says nogui


Acer Aspire V5-573P Antergos KDE

Offline

#94 2009-01-16 00:08:52

Roberth
Member
From: The Pale Blue Dot
Registered: 2007-01-12
Posts: 894

Re: [Request]MPlayer with vdpau support?

venky80 wrote:

would the mplayer plugin work with this? will i be able to run the videos from my desktop, I am asking since it says nogui

Yes.


Use the Source, Luke!

Offline

#95 2009-01-16 01:28:27

venky80
Member
Registered: 2007-05-13
Posts: 1,002

Re: [Request]MPlayer with vdpau support?

does nvidia from testing works the same as the nvidia in this repo?


Acer Aspire V5-573P Antergos KDE

Offline

#96 2009-01-16 01:44:38

venky80
Member
Registered: 2007-05-13
Posts: 1,002

Re: [Request]MPlayer with vdpau support?

iam getting the following error
[venky@ARCHROCKS Firefox Download]$ mplayer the_dark_knight-tlr3_h1080p.mov
mplayer: error while loading shared libraries: libvdpau.so.1: cannot open shared object file: No such file or directory


Acer Aspire V5-573P Antergos KDE

Offline

#97 2009-01-16 02:30:42

WiLLiE
Member
From: Sweden
Registered: 2005-02-27
Posts: 135

Re: [Request]MPlayer with vdpau support?

buddabrod wrote:

A x86_64 repo will be up today, you can check it out like the i686 one.

Add
i686

[vdpau-repo]
Server = http://www-user.rhrk.uni-kl.de/~dbrendel/repo/i686

x86_64

[vdpau-repo]
Server = http://www-user.rhrk.uni-kl.de/~dbrendel/repo/x86_64

to your /etc/pacman.conf

Edit: Just a note: nvidia from i686 is build against kernel26-2.6.28 and the one in x86_64 is built against kernel26 from core. I thought 2.6.28 would be in core sooner..

I installed kernel26-2.6.28, nvidia, nvidia-utils, mplayer-vdpau-nogui-svn and xine-lib-vdpau-svn from your repo. (i686)

But where is libvdpau.so.1?

mplayer -vo vdpau -vc ffh264vdpau Grey.ts 
mplayer: error while loading shared libraries: libvdpau.so.1: cannot open shared object file: No such file or directory
sudo pacman -Ql mplayer-vdpau-nogui-svn
mplayer-vdpau-nogui-svn /etc/
mplayer-vdpau-nogui-svn /etc/mplayer/
mplayer-vdpau-nogui-svn /etc/mplayer/codecs.conf
mplayer-vdpau-nogui-svn /etc/mplayer/example.conf
mplayer-vdpau-nogui-svn /etc/mplayer/input.conf
mplayer-vdpau-nogui-svn /usr/
mplayer-vdpau-nogui-svn /usr/bin/
mplayer-vdpau-nogui-svn /usr/bin/mencoder
mplayer-vdpau-nogui-svn /usr/bin/mplayer
mplayer-vdpau-nogui-svn /usr/lib/
mplayer-vdpau-nogui-svn /usr/share/
mplayer-vdpau-nogui-svn /usr/share/man/
mplayer-vdpau-nogui-svn /usr/share/man/man1/
mplayer-vdpau-nogui-svn /usr/share/man/man1/mencoder.1.gz
mplayer-vdpau-nogui-svn /usr/share/man/man1/mplayer.1.gz
mplayer-vdpau-nogui-svn /usr/share/mplayer/
mplayer-vdpau-nogui-svn /usr/share/mplayer/subfont.ttf

Am I missing something?


Edit: Nevermind, I reinstalled nvidia & nvidia-utils again, using  "sudo pacman -S vdpau-repo/nvidia-utils". I had compiled 180.22 myself previously, I guess pacman prioritized those.

Last edited by WiLLiE (2009-01-16 02:40:05)

Offline

#98 2009-01-16 02:45:50

WiLLiE
Member
From: Sweden
Registered: 2005-02-27
Posts: 135

Re: [Request]MPlayer with vdpau support?

However, now I get this error:


mplayer -vo vdpau -vc ffh264vdpau Grey.ts 
MPlayer dev-SVN-r27960-4.3.2 (C) 2000-2008 MPlayer Team
CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (Family: 15, Model: 43, Stepping: 1)
CPUflags:  MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.
129 audio & 262 video codecs

Playing Grey.ts.
TS file format detected.
VIDEO H264(pid=255) AUDIO A52(pid=259) NO SUBS (yet)!  PROGRAM N. 1000
FPS seems to be: 25.000000
SUB: Could not determine file format
Cannot load subtitles: ./Grey.txt
==========================================================================
Forced video codec: ffh264vdpau
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
[VD_FFMPEG] VDPAU accelerated codec.
Selected video codec: [ffh264vdpau] vfm: ffmpeg (FFmpeg H.264 (VDPAU))
==========================================================================
==========================================================================
Opening audio decoder: [liba52] AC3 decoding with liba52
Using SSE optimized IMDCT transform
Using MMX optimized resampler
AUDIO: 48000 Hz, 2 ch, s16le, 448.0 kbit/29.17% (ratio: 56000->192000)
Selected audio codec: [a52] afm: liba52 (AC3-liba52)
==========================================================================
AO: [oss] 48000Hz 2ch s16le (2 bytes per sample)
Starting playback...
[VD_FFMPEG] Trying pixfmt=0.
VDec: vo config request - 1920 x 1088 (preferred colorspace: H.264 MAIN VDPAU acceleration)
VDec: using H.264 MAIN VDPAU acceleration as output csp (no 1)
Movie-Aspect is 1.76:1 - prescaling to correct movie aspect.
VO: [vdpau] 1920x1088 => 1920x1088 H.264 MAIN VDPAU acceleration 
[ASPECT] Warning: No suitable new res found!
[ASPECT] Warning: No suitable new res found!
Error 25 at libvo/vo_vdpau.c:230

Offline

#99 2009-01-16 11:56:43

buddabrod
Member
From: Germany
Registered: 2007-02-25
Posts: 220

Re: [Request]MPlayer with vdpau support?

venky80 wrote:

iam getting the following error
[venky@ARCHROCKS Firefox Download]$ mplayer the_dark_knight-tlr3_h1080p.mov
mplayer: error while loading shared libraries: libvdpau.so.1: cannot open shared object file: No such file or directory

Dont use nvidia-utils from testing (should be in core by now). Use the one I built since the one from testing does not include vdpau stuff.

WiLLiE: Report this to nvidia.

Offline

#100 2009-01-16 17:00:33

venky80
Member
Registered: 2007-05-13
Posts: 1,002

Re: [Request]MPlayer with vdpau support?

with your nvidia-utils iam getting an issue with libwfb symlink
I usually edited the install file to ignore the nvidia's libwfb and use xorg's libwfb .
So in short if i install your nvidia-utils my X does not start, the testing done works though. I have posted the libwfb issue in the threads but it seems no one has that issue.
I had to do it when the drivers were in AUR too.


Acer Aspire V5-573P Antergos KDE

Offline

Board footer

Powered by FluxBB