You are not logged in.

#1 2005-11-22 21:41:57

AndyRTR
Developer
From: Magdeburg/Germany
Registered: 2005-10-07
Posts: 1,641

[PKGBUILD] dvbcut

I´ve made a pkgbuild for dvbcut. It´s in an early development state. But maybe it can replace ProjectX.

Website: http://dvbcut.sourceforge.net/index.html

dvbcut is a Qt application which enables you to select certain parts of an MPEG transport stream (as received on Digital Video Broadcasting, DVB) and save these parts into a single MPEG output file. It follows a "keyhole surgery" approach. Thus, the input video and audio data is mostly kept unchanged, only very few frames at the beginning and/or end of the selected range are re-encoded in order to obtain a valid MPEG file.

PKGBUILD

# Contributor: AndyRTR <andreas.radke@freenet.de>
pkgname=dvbcut
pkgver=0.5.0
pkgrel=1
pkgdesc="a Qt application which enables you to select certain parts of an MPEG transport stream and save these parts into a single MPEG output file"
url="http://dvbcut.sourceforge.net/index.html"
license=""
depends=('qt' 'ffmpeg' 'libao')
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
md5sums=('03360b5429f6ff41809820552daeaaed')

build() {
  cd $startdir/src/$pkgname-$pkgver
  qmake
  make || return 1
  install -d $startdir/pkg/usr/bin
  install -m755 $startdir/src/$pkgname-$pkgver/bin/dvbcut $startdir/pkg/usr/bin/
}

It works here fine. But a bugfix release is already announced to come out this night.

If you don´t see something wrong in the pkgbuild I will upload it soon after the bugfix comes out.

I had to download it manually to build it.

AndyRTR

Offline

#2 2005-11-22 22:23:39

AndyRTR
Developer
From: Magdeburg/Germany
Registered: 2005-10-07
Posts: 1,641

Re: [PKGBUILD] dvbcut

http://dvbcut.sourceforge.net/installation.html

There´s a feature to use mplayer for browsing the video while cutting. I think this is a quiet important feature though it would work without.

So shell I add mplayer as a dependency?

Offline

#3 2005-11-23 01:50:33

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: [PKGBUILD] dvbcut

When it is compiled with that feature, can it still work without mplayer being installed?
If yes, do not add mplayer as a dependency.  Instead, use a .install file to notify users to install mplayer if they want to use this feature.

Offline

#4 2005-11-23 19:12:25

AndyRTR
Developer
From: Magdeburg/Germany
Registered: 2005-10-07
Posts: 1,641

Re: [PKGBUILD] dvbcut

Your suggestion is a good solution. Going to upload it.

Offline

Board footer

Powered by FluxBB