Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
"adobe premiere" like program
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Multimedia
View previous topic :: View next topic  
Author Message
taskara
Advocate
Advocate


Joined: 10 Apr 2002
Posts: 3763
Location: Australia

PostPosted: Wed Jul 10, 2002 2:46 am    Post subject: "adobe premiere" like program Reply with quote

anyone know any linux app that lets you edit digital video, and export to various codecs, like adobe premiere?

like making your own movies..

ta
Back to top
View user's profile Send private message
trythil
Tux's lil' helper
Tux's lil' helper


Joined: 06 Jun 2002
Posts: 123
Location: RHIT, Terre Haute, IN, USA

PostPosted: Wed Jul 10, 2002 3:30 am    Post subject: Reply with quote

Cinelerra, http://www.heroinewarrior.com

This is in early beta, so don't bitch if it doesn't work. Though, when it works, it's quite nice.
Back to top
View user's profile Send private message
taskara
Advocate
Advocate


Joined: 10 Apr 2002
Posts: 3763
Location: Australia

PostPosted: Wed Jul 10, 2002 5:02 am    Post subject: Reply with quote

ok ta..

and I'm not a bitcher :)
Back to top
View user's profile Send private message
trythil
Tux's lil' helper
Tux's lil' helper


Joined: 06 Jun 2002
Posts: 123
Location: RHIT, Terre Haute, IN, USA

PostPosted: Wed Jul 10, 2002 6:49 am    Post subject: Reply with quote

Actually, just found out something --

The Cinelerra source, under GCC 3.1, won't build -- I've tweaked the source files, and the digital video library is just a bastard.

Code:

g++ -o i686/cinelerra `cat i686/objs`
../quicktime/i686/libquicktime.a(encode.o): In function `dv_peek_vlc':
encode.o(.text+0xe6): multiple definition of `dv_peek_vlc'
../quicktime/i686/libquicktime.a(dv.o)(.text+0xe6): first defined here
../quicktime/i686/libquicktime.a(parse.o): In function `dv_peek_vlc':
parse.o(.text+0xe6): multiple definition of `dv_peek_vlc'
../quicktime/i686/libquicktime.a(dv.o)(.text+0xe6): first defined here
../quicktime/i686/libquicktime.a(vlc.o): In function `dv_peek_vlc':
vlc.o(.text+0xe6): multiple definition of `dv_peek_vlc'
../quicktime/i686/libquicktime.a(dv.o)(.text+0xe6): first defined here
collect2: ld returned 1 exit status


I removed inlining and extern from that function; appearently neither worked. Bleh. It fixed one problem, I figured it'd fix another :)

The function originally looked like:
Code:

extern void __inline__ dv_peek_vlc(bitstream_t *bs,gint maxbits, dv_vlc_t *result) {
  if(maxbits < 16)
    dv_decode_vlc(bitstream_show(bs,16),maxbits,result);
  else
    __dv_decode_vlc(bitstream_show(bs,16),result);
} // dv_peek_vlc


Anyway.

The Cinelerra binaries won't execute because they were built against libpng-1.0.12, not 1.2.3. Additionally, they expect libstdc++.so.3 to be present, which isn't the case when you use a GCC 3.1-built system.

Doh.
Back to top
View user's profile Send private message
taskara
Advocate
Advocate


Joined: 10 Apr 2002
Posts: 3763
Location: Australia

PostPosted: Wed Jul 10, 2002 8:31 am    Post subject: Reply with quote

ok ta - I have a gcc 3.1 system atm, but I'm gonna rebuild it tonight with a raid array.

So hopefully this weekend I'll get to have a play with Cinelerra this weekend.

I'll let you know how I go.
Back to top
View user's profile Send private message
klieber
Bodhisattva
Bodhisattva


Joined: 17 Apr 2002
Posts: 3657
Location: San Francisco, CA

PostPosted: Wed Jul 10, 2002 12:35 pm    Post subject: Reply with quote

I wouldn't put this in the same league as Adobe Premiere, but Kino at least lets you do basic editing and exporting to various codecs.

--kurt
_________________
The problem with political jokes is that they get elected
Back to top
View user's profile Send private message
taskara
Advocate
Advocate


Joined: 10 Apr 2002
Posts: 3763
Location: Australia

PostPosted: Wed Jul 10, 2002 1:25 pm    Post subject: Reply with quote

thanks mate..

I do video editting in windows atm, but I'm so sick of windows I just want to get rid of it forever, and premiere is one program I didn't know if there was an alternative for.

I'll give all these a go, and post my results..

anyone else feel free to recommend any programs..

ta
Back to top
View user's profile Send private message
Swishy
Guru
Guru


Joined: 06 Jun 2002
Posts: 491
Location: NZ

PostPosted: Wed Jul 10, 2002 4:07 pm    Post subject: Reply with quote

It could be worth playing around with wine and native dll's , photoshop and a few other adobe app's run perfect under it , it would just be wether the video side of things will work....

Cheers
Dale.
_________________
Theres no substitute for C.I.
Back to top
View user's profile Send private message
taskara
Advocate
Advocate


Joined: 10 Apr 2002
Posts: 3763
Location: Australia

PostPosted: Wed Jul 10, 2002 10:02 pm    Post subject: Reply with quote

yeah good idea - I think If I'm stuck I can use vmware / win4lin

not sure how it'd run tho :) bit of a chunky program
Back to top
View user's profile Send private message
zypher
Retired Dev
Retired Dev


Joined: 10 Jun 2002
Posts: 416
Location: Cologne, ger.

PostPosted: Thu Jul 11, 2002 5:49 am    Post subject: Reply with quote

There was a prog called bcast afair...
The most joyful thing for me would be someone ports VirtualDub to linux.
Sad I'm not a good coder at all, all I could do would be testing.
VirtualDub is by far the most useful tool for me when it comes to simple video-editing, converting and so on, it's GPLed too.
_________________
linux user 65882
Back to top
View user's profile Send private message
kipper
Tux's lil' helper
Tux's lil' helper


Joined: 20 Apr 2002
Posts: 112

PostPosted: Thu Jul 11, 2002 12:30 pm    Post subject: Reply with quote

transcode also seems to be a popular video editor for linux. There is an ebuild if you want to check it out. I found it to work very well, just no gui like in virtualdub or premiere

cheers,
kipper
Back to top
View user's profile Send private message
klieber
Bodhisattva
Bodhisattva


Joined: 17 Apr 2002
Posts: 3657
Location: San Francisco, CA

PostPosted: Thu Jul 11, 2002 12:44 pm    Post subject: Reply with quote

kipper wrote:
transcode also seems to be a popular video editor for linux.


Hmmm...transcode is more of a stream processor -- it's great for encoding/decoding, but doesn't do much in the way of splicing, storyboarding or mixing. transcode also doesn't do any sort of video capture that I'm aware of.

--kurt
_________________
The problem with political jokes is that they get elected
Back to top
View user's profile Send private message
cesman
n00b
n00b


Joined: 29 Jun 2002
Posts: 24

PostPosted: Thu Jul 11, 2002 2:25 pm    Post subject: avidemux Reply with quote

You'll want to take a look at avidemux.
http://fixounet.free.fr/avidemux/
VirtualDub does run under Wine, but you cannot using Divx(might be able to with native DLLS). However you could still use it, then use transcode to make Divx or Xvid out of your results.

cesman
Back to top
View user's profile Send private message
taskara
Advocate
Advocate


Joined: 10 Apr 2002
Posts: 3763
Location: Australia

PostPosted: Thu Jul 11, 2002 11:42 pm    Post subject: Reply with quote

thanks guys, all that should keep be busy for a while :)
Back to top
View user's profile Send private message
rac
Bodhisattva
Bodhisattva


Joined: 30 May 2002
Posts: 6553
Location: Japanifornia

PostPosted: Wed Aug 21, 2002 11:37 am    Post subject: Reply with quote

Fled the crowds in Desktop Environments for the wide open spaces of the new Multimedia forum.
_________________
For every higher wall, there is a taller ladder
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Multimedia All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum