LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 05-06-2005, 01:21 PM   #1
Ekkume
Member
 
Registered: Mar 2005
Location: Finland
Distribution: Debian Sid, FreeBSD, Mandrake, Red Hat
Posts: 84

Rep: Reputation: 15
What happened to transcode?


The download site for transcode seems to be broken.
Ubuntu doesn't seem to have a deb for it, but packages
that seem to be dependent on it.

Does anyone know of an alternative way of downloading it?

Ekkume
 
Old 05-06-2005, 02:08 PM   #2
Linux.tar.gz
Senior Member
 
Registered: Dec 2003
Location: Paris
Distribution: Slackware forever.
Posts: 2,534

Rep: Reputation: 100Reputation: 100
You can find a .tgz here:
http://linuxpackages.net/
Slackware packages can be installed on any Linux distro.
 
Old 05-06-2005, 02:57 PM   #3
rignes
Member
 
Registered: Mar 2003
Location: USA
Distribution: Slackware-current
Posts: 155

Rep: Reputation: 30
They can? I've never tried. But I imagine you could just tar -xvzf if and put the files where they should be.

I don't know if that would overwrite anything though.
 
Old 05-07-2005, 06:41 AM   #4
Linux.tar.gz
Senior Member
 
Registered: Dec 2003
Location: Paris
Distribution: Slackware forever.
Posts: 2,534

Rep: Reputation: 100Reputation: 100
You have to put the package in / and then run the command tar (i don't remember exactly the switches but you can find this easily).

Last edited by Linux.tar.gz; 05-07-2005 at 06:42 AM.
 
Old 05-08-2005, 12:47 AM   #5
Ekkume
Member
 
Registered: Mar 2005
Location: Finland
Distribution: Debian Sid, FreeBSD, Mandrake, Red Hat
Posts: 84

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by Linux.tar.gz
You have to put the package in / and then run the command tar (i don't remember exactly the switches but you can find this easily).
I did get the tarball and I have been trying to compile it, but it keeps complaining that different
stuff is missing, like some Freetype fonts, and fails when I try to configure it. I would really have preferred to get a package which trys to take care of the dependencies for me.

So Slackware doesn't use a package manager? Slackware is the most posted-about distro in the distro section. Either there are a lot of Slackware users, or then the users need to ask a lot of questions.


Ekkume
 
Old 05-08-2005, 01:12 AM   #6
Ekkume
Member
 
Registered: Mar 2005
Location: Finland
Distribution: Debian Sid, FreeBSD, Mandrake, Red Hat
Posts: 84

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by Linux.tar.gz
You have to put the package in / and then run the command tar (i don't remember exactly the switches but you can find this easily).
I did get the tarball and I have been trying to compile it, but it keeps complaining that different
stuff is missing, like some Freetype fonts, and fails when I try to configure it. I would really have preferred to get a package which trys to take care of the dependencies for me.

So Slackware doesn't use a package manager? Slackware is the most posted-about distro in the distro section. Either there are a lot of Slackware users, or then the users need to ask a lot of questions.


Ekkume
 
Old 05-08-2005, 01:20 AM   #7
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
don't expect it to hold your hand, it ( or Patrick rather) assumes you know what you are doing.

from the INSTALL file from the transcode source:

****************************************************************

Transcode compiles even if you do not have all additional libs
installed. You do not *need* to have a "yes" on every configure check.
Transcode comes with some of the libraries included. That is libmpeg2
for decoding MPEG-2 files, libdvdread for reading DVDs, a library to
read AVI files.

You will need to have libavcodec (also known as ffmpeg libraries)
installed somewhere on your computer. Without libavcodec transcode
doesn't compile. The best way to accomplish this is to get ffmpeg from
cvs (www.ffmpeg.org), configure it with at least --enable-shared,
compile and install it. A package of some kind that includes
libavcodec.so and the headers will do as well. If the files are
installed in a non-default location (transcode assumes prefix: /usr),
then you will need to tell transcode where they live. Very important:
you _need_ both the header files _and_ libavcodec.so files. The
libavcodec.a file won't do!

It is recommended, that you have a recent nasm installed (>=0.98.35) if
you are on an x86 based platform. A recent version of lame is a good
thing to have installed, too. Depending on what you want to do with
transcode you may need additional packages installed.

Now do "./configure --help" to find out which packages transcode can use
(see the --enable-$$$ and --with-$$$ flags). ONLY PACKAGES THAT ARE
ENABLED EXPLICITLY USING CONFIGURE ARE ACTUALLY USED TO BUILD MODULES.

If you have any optimisations your C compiler supports and you want to
use, put them in the environment variable CFLAGS. Recommended for
newbies: export CFLAGS="-O3". It pays off to study all the optimisation
flags your C compiler offers and hand them to transcode. For instance,
add "-march=pentium4" if you're going to run transcode on pentium 4.

If you're using gcc and get errors about "can't find a register in class
`GENERAL_REGS'" add -fomit-frame-pointer to CFLAGS.

The file tcconfig has some example (!) optimisations you might want to use.

Then do "./configure" with all the relevant --enable-$$$ and --with-$$$
options.

*******************************************************************

do you meet these requirements?
 
Old 05-08-2005, 06:42 AM   #8
Linux.tar.gz
Senior Member
 
Registered: Dec 2003
Location: Paris
Distribution: Slackware forever.
Posts: 2,534

Rep: Reputation: 100Reputation: 100
Slackware packages @linuxpackages.net are not sources. You just have to install it the way i can't remember.
Yes, Slackware uses a package manager. The best ever because the simpliest ever.
About the dependencies, it's not really a problem, because there's usually not many. (ex.: 1 for aMule).
 
Old 05-08-2005, 08:02 AM   #9
rignes
Member
 
Registered: Mar 2003
Location: USA
Distribution: Slackware-current
Posts: 155

Rep: Reputation: 30
Are you referring to just downloading the slackware tgz file, sticking it in root, and then running tar -xvzf filenameofpackage.tgz?

Oh, and maybe checking to see what any install scripts are there are and what they do?
 
Old 05-08-2005, 01:34 PM   #10
Linux.tar.gz
Senior Member
 
Registered: Dec 2003
Location: Paris
Distribution: Slackware forever.
Posts: 2,534

Rep: Reputation: 100Reputation: 100
Yes it should be that. Install scripts usually do nothing. The only one "active" i know is webmin.
 
Old 05-08-2005, 01:41 PM   #11
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Why not use installpkg pkgname.tgz ?
 
Old 05-08-2005, 03:23 PM   #12
Ekkume
Member
 
Registered: Mar 2005
Location: Finland
Distribution: Debian Sid, FreeBSD, Mandrake, Red Hat
Posts: 84

Original Poster
Rep: Reputation: 15
The Way, Truth and Light

I really don't know anything about Slackware. I come across the name a lot when doing
googles about video and Linux, which is what I am interested in. I have promised to convert
some instructional videos to DVD format for one organisation. So far, I have had pretty good luck with
DivX and XVid in Ubuntu using Acidrip using a Pinnacle PCTV Pro card.

One Debian guru friend of mine has stated that they don't try to make anything easy for the
user in Slackware.

There have been over 130,000 posts in the Slackware distro forum, and Mandriva comes in 2nd with 57000,
then Fedora with 34K and Debian with 32K. Very interesting. Slackware must be quite popular.

Jesus Christ is the original owner of the title: the Way, Truth and the Light.
I wonder which distro Jesus would use? Probably Ubuntu is my guess.
I don't think he would use Damn Small Linux. :-) or FreeBSD ;-)

Slackware is still quite a popular distro.


Ekkume
 
Old 05-08-2005, 05:22 PM   #13
Linux.tar.gz
Senior Member
 
Registered: Dec 2003
Location: Paris
Distribution: Slackware forever.
Posts: 2,534

Rep: Reputation: 100Reputation: 100
Quote:
Originally posted by keefaz
Why not use installpkg pkgname.tgz ?
Because Ekkume uses Ubuntu.
 
Old 05-08-2005, 05:25 PM   #14
Linux.tar.gz
Senior Member
 
Registered: Dec 2003
Location: Paris
Distribution: Slackware forever.
Posts: 2,534

Rep: Reputation: 100Reputation: 100
Alien is a Debian tool which converts non-Debian packages into Debian .deb. Take a look at it.
Slack provides everything you need. Not less, not more.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Transcode RGummi Linux - Software 2 11-15-2005 11:06 AM
Transcode CrEsPo Linux - Software 6 05-11-2005 05:46 PM
Need help with transcode mascool Linux - General 3 10-16-2003 05:42 PM
transcode kev82 Linux - Software 4 08-30-2003 10:59 PM
transcode jrmann1999 Linux - General 0 04-02-2003 07:15 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 01:05 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration