[CinCV] Cinelerra på Ubuntu 10.10?

2011-03-13 Thread Chris Nørve
Hei. Jeg lurte på om dere kunne lage en repository eller .deb pakke fil for
ubuntu 10.10?
Jeg så at det var en for 8.04 men den funket ikke for meg.
Det er dessuten litt trøyt at dere har repos for så gamle versjoner fremfor
de nye.
Jeg prøvde også repoen for Debian men den funka heller ikke.
Please fiks dette.
_
Chris


Re: [CinCV] Cinelerra quits on play

2009-02-28 Thread Chris Faulkner
This is an unadulterated file from my DV camera via Firewire.  I don't think
this is compressed at all.  I'm just not sure why Cinelerra is crashing...

On Sat, Feb 28, 2009 at 5:24 PM, E Chalaron  wrote:

> Chris
> It should not be the reason, I play files over 50 GB without a single
> problem.
> However they are uncompressed files in 422 or 444.
> Cheers
> E
>
> Chris Faulkner wrote:
> > Now, I admit, I have a rather large file (13GB Video file) and that's
> > probably the problem.  I prolly could try it with a smaller program to
> > see if it will work right, but here is the error message I get in a
> > console:
> >
> > --- SNIP ---
> >
>
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
>


[CinCV] Cinelerra quits on play

2009-02-28 Thread Chris Faulkner
Now, I admit, I have a rather large file (13GB Video file) and that's
probably the problem.  I prolly could try it with a smaller program to see
if it will work right, but here is the error message I get in a console:

--- SNIP ---

Cinelerra 2.1CV  Gentoo - SVN r1055 (C) 2006 Heroine Virtual Ltd.
External ffmpeg
Compiled on Sat Feb 28 08:41:13 CST 2009

Cinelerra is free software, covered by the GNU General Public License,
and you are welcome to change it and/or distribute copies of it under
certain conditions. There is absolutely no warranty for Cinelerra.
signal_entry: got SIGSEGV my pid=14725 execution table size=16:
filemov.C: filemov.C: 100
filemov.C: filemov.C: 102
filemov.C: filemov.C: 104
mwindow.C: load_filenames: 1147
mwindow.C: load_filenames: 1151
mwindow.C: load_filenames: 1153
bchash.C: copy_from: 255
bchash.C: copy_from: 258
bchash.C: copy_from: 267
vrender.C: run: 416
vrender.C: run: 555
vrender.C: run: 414
vrender.C: process_buffer: 103
vrender.C: process_buffer: 113
vrender.C: run: 416
vrender.C: run: 427
signal_entry: lock table size=13
0x2328040 CWindowTool::input_lock CWindowTool::run
0x1356370 BC_Synchronous::next_command BC_Synchronous::run
0x2407a40 TransportQue::output_lock PlaybackEngine::run
0x2408440 MainIndexes::input_lock MainIndexes::run 1
0x24842a0 ResourceThread::draw_lock ResourceThread::run
0x24c00d0 BC_WindowBase::event_condition BC_WindowBase::get_event
0x234f080 BC_WindowBase::event_condition BC_WindowBase::get_event
0x2378180 BC_WindowBase::event_condition BC_WindowBase::get_event
0x21409b0 BC_WindowBase::event_condition BC_WindowBase::get_event
0x227c400 BC_WindowBase::event_condition BC_WindowBase::get_event
0x240a690 BC_WindowBase::event_condition BC_WindowBase::get_event
0x7f7a58394ab0 AudioDevice::play_lock AudioDevice::run 1
0x2349900 CICache::total_lock CICache::check_out *
BC_Signals::dump_buffers: buffer table size=0
BC_Signals::delete_temps: deleting 0 temp files
SigHandler::signal_handler total files=0
Aborted

--- SNIP ---

Anything to try on this?


Re: [CinCV] Realtime or Low Latency Ker-what? - help in choosing a distro

2008-09-03 Thread Chris Cherrett

Ichthyostega wrote:


Because all of this is complicated stuff and not every realtime
patched kernel version is equaly usable in practice, you should
always rely on the pre-built RT-kernel images which are provided
by specialized distros like "Ubuntu studio" or "64 Studio"

Good post however I don't know if I would agree with staying away from 
patching. If there are issues you are one vanilla and a patch away. No 
big deal once you know how a kernel compile works.


Thanks
___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] MIDI control for cinelerra / patch for the first stage

2008-03-26 Thread Chris Cherrett

>> Hi list!
>>
>> More than a week ago I boldly stated that I would send you a patch for
>> MIDI input in cinelerra soon. I'm a little late, but here it is. And, as
>> everyone here knows, a small video shows more than words can tell. You
>> can see the patch in action here:
>>
>> http://www.youtube.com/watch?v=ruJVAiUYf7g
>>
>> Remember this is a first attempt, so don't expect anything too grand.
>> The patch allows scrolling through assets, using jogwheels to move
>> through the viewer and the compositor, and various MIDI key bindings for
>> cinelerra functions.
>>
>> All MIDI assignments are static at the time, and most of the functions
>> have only been superficially tested.
>>
>> Basic technical description:
>>
>> - I added a new class, MidiControl, in the same fashion as other
>> features are factored in Cinelerra.
>>
>> - I hooked that class into the automake configuration and into the main
>> window startup code.
>>
>> - The constructor opens an ALSA sequencer device, which has to be
>> connected by an outside app (jack patchbay, for instance).
>>
>> - The class inherits Thread and is able to run a MIDI polling loop in
>> the background.
>>
>> - Inside the MIDI event handling loop, there are switch-case-statements
>> which handle individual MIDI commands.
>>
>> - The code called there is taken from various key handlers in cinelerra,
>> with minor parameterization changes.
>>
>>
>> My next step: understand how preferences are saved and provide a
>> preferences pane or a new config window for the MIDI section.
>>
>> I'm having special difficulty in extracting the code for automation
>> control and for drag-editing, which would both be fantastic to have on
>> the MIDI control surface. Because the original code needs to handle
>> mouse press, drag, and release events separately, collecting the
>> corresponding code is a bit painful... So I'll defer that to a later stage.
>>
>> The patch is relative to revision 1055, so everyone should be able to
>> apply it without trouble.
>>
>> Any comments are welcome!
>>
>> - Ján
I wonder how hard it would be to use python to get your stuff working in
blender? Any thoughts?

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] Re: Cinelerra digest, Vol 1 #1982 - 1 msg (Thanx Scott)

2007-11-18 Thread Chris Cherrett
Dale Jovan Thomas wrote:
> Hey Scott,
> 
> Thanks for the tip, I actually had to view my overlays, and it was there I
> noticed that I had all my assests disabled, I enabled them and I got my
> icons back *magic*
> 
> Another question for the group:
> 
> Is it possible to add an affect to a certain section of a frame? For example
> say if you had a tree with a house in the background in your frame, and you
> want to blurt out the tree and not the house. Is that possible in Cinelerra?
> 
> 
> 
you can make two identical layers and mask out the tree on the bottom
layer and apply a blur to the top layer

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] razor

2007-04-09 Thread Chris Reynolds
just wanted to say thank you to everyone for your help.

Chris



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] razor

2007-04-09 Thread Chris Reynolds
thanks. I think I'm starting to understand how to do it. I've been looking 
through the manual and playing around with the program. It's just going to take 
me some time to get used to the way cinelerra does things. 

Herman Robak <[EMAIL PROTECTED]> wrote: On Mon, 2007-04-09 at 08:28 -0700, 
Chris Reynolds wrote:
> I could put the still image on another layer but I want to be able to
> use a transition between the video and the still and back to the
> video. I could be wrong but don't you have to have items on the same
> timeline in order to use a transition between them?

 Transitions are there to enable simple dissolves on a single track.
If you have two tracks, you simpy use the tracks' faders to fade one
track in, and the other track out.  You get better control this way, 
at the expense of screen estate, and more mouse movement.

 Anyhow, what you wanted to do is possible with a transition, so you
don't need to use two tracks.

-- 
 Herman Robak


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

[CinCVS] razor

2007-04-09 Thread Chris Reynolds
I could put the still image on another layer but I want to be able to use a 
transition between the video and the still and back to the video. I could be 
wrong but don't you have to have items on the same timeline in order to use a 
transition between them?

I think I've pretty much got it figured out now thanks to everyones help. Now 
if I can just figure out how to do the ken burns effect ( making the still 
image look like it's moving) and then figure out how to titles and overlays 
i'll be set to get started on this project. 

Chris



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

[CinCVS] razor

2007-04-09 Thread Chris Reynolds
sorry, let me clarify what I'm wanting to do. i want to put a video in the 
timeline, then I want to cut out sections without closing the gap so I can put 
in a still picture. I also want to leave the audio intact and only cut a 
section out of the video track. Basically I'm working on a video of a 
presentation and I want to be able to cut away from the speaker and put a still 
photo in or other bit of video while leaving the audio intact. 

Chris



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

[CinCVS] razor

2007-04-09 Thread Chris Reynolds
Is there a razor function in cinelerra for trimming video in the timeline? I'm 
used to using programs like adobe premiere and pinnacle studio where I can trim 
out a section in the timeline but I haven't figured out how to do that in 
cinelerra.

Thanks,
Chris


Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] new to group

2007-02-08 Thread Chris Reynolds
is there a preferred distribution among cinelerra users?

Chris


Graham Evans <[EMAIL PROTECTED]> wrote: On Sun, 2007-02-04 at 17:11 -0800, 
Chris Reynolds wrote:
> I found the filedv.C patch but when I did patch filedv.C <
> filedv.C.patch I got the error message 
> patch:  Can't find file filedv.C : No such file or directory
> 
> is this because I installed cinelerra on Ubuntu Dapper by updating my
> sources.list and then using apt-get to install it? I tried compiling
> it from source but never could get that to work .
> 
> Chris
> 

Chances are what you have is a binary of cinelerra - you can't apply a
patch to cinelerra in that form.

Valentina and muzzol, on this list, are working on ubuntu packaging
(making new binaries) after the previous maintainer retired.  The latest
message to this list on that topic was Jan 20th 2007.  Vale has
cinelerra packages here:

#debian  amd64
deb http://giss.tv/~vale/debian64 ./
deb-src http://giss.tv/~vale/debian64 ./

#ubuntu edgy
deb http://giss.tv/~vale/ubuntu32 ./
deb-src http://giss.tv/~vale/ubuntu32 ./

#ubuntu edgy amd64
deb http://giss.tv/~vale/ubuntu64 ./
deb-src http://giss.tv/~vale/ubuntu64 ./

- but those are packages for ubuntu edgy.

If you want to try building from source just keep searching through the
list archives to work through each problem as you come to it.  Otherwise
you will probably have to wait..

Graham
> 
> Richard Rasker  wrote:
> Op zo, 04-02-2007 te 14:13 -0800, schreef Chris Reynolds:
> > Wanted to say hi and post a question. I'm pretty new to
> Cinelerra and
> > I've run into an issue that I can't figure out. I've got a
> dv file
> > that I captured wth kino in 16:9 and I edited it down. Then
> I wanted
> > to render it back out as dv so I could take it into another
> program.
> > Problem is the aspect ratio keeps getting switched to 4:3
> even though
> > I have it set to 16:9 in the project settings. I'm also
> getting this
> > weird popping sound every 2 seconds or so that isn't in my
> original dv
> > file. Anyone have any suggestions ?.
> 
> I don't know about the aspect ration problems, but the problem
> with
> regular popping sound is an old one - see my question titled
> "Raw DV
> rendering problems?" about this, from September 12th on this
> list (and
> of course the answers). I guess you have an (older)
> pre-packaged
> version; the best solution is to build a recent Cinelerra
> version from
> source, at least until some recent version has been packaged
> into
> whatever package format you use.
> 
> Regards,
> 
> Richard Rasker
>     
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> 
> 
> 
> Chris Reynolds
> 
> http://builderofstuff.com
> 
> "Computers are like air conditioners - They can't do their job
> properly if you open windows."


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] new to group

2007-02-06 Thread Chris Reynolds
you mean there's a manual? hahahaha just kidding. 

I did download the manual and have been working my way through it. Being 
somewhat new to linux it seems like when it comes to learning a new program I 
have to learn new things about linux as well. What impresses me most about the 
linux community is that there are people out there that put so much effort into 
bringing us users these programs. I know a lot of people complain about not 
being able to get pograms to work right and whatnot but considering the fact 
that it didn't cost anything for them to get the program and they are enjoying 
the fruits of someone elses labor complaining seems extrememly rude. I wish I 
knew something about programming so I could get involved in working on 
programs, but alas it's not my strong suite, I'm more of a mechanical person. 
hahahaha

muzzol <[EMAIL PROTECTED]> wrote: no problem chris. new users are always 
wellcome :)

btw, you deserve a big RTFM :D

2007/2/6, Chris Reynolds :
> sorry I didn't realize it was something common. didn't mean to repost
> something that was a common issue, and already known
>
>
> Chris
>

-- 

 ^ ^
 O O
(_ _)
muzzol(a)gmail.com

jabber id: muzzol(a)jabber.dk

No atribueixis qualitats humanes als ordinadors.
No els hi agrada.

"El gobierno español sólo habla con terroristas, homosexuales y
catalanes, a ver cuando se decide a hablar con gente normal"
Jiménez Losantos


bomb terrorism bush aznar teletubbies


)ޕ��jf��)�+-
)ޕ��j�(��b��g�m����x��)鮉��f��f���(��b��g��b�ا~�܊w�z��


Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] new to group

2007-02-06 Thread Chris Reynolds
thank you for the help

Chris


Sylvain Jousse <[EMAIL PROTECTED]> wrote: Salut Chris,

> well I upgraded to edgy and now I can't get kino to work. hahaha  I also
> get an error message when I launch cinelerra
>
> coid MWindow::init_shm():WARNING:/proc/sys/kernel/shmmax is 0x200,
> which is to low. Before running Cinelerra do the following as root:
> echo "0x7ff" > /proc/sys/kernel/shmmax
Add these two lines at the bottom of /etc/sysctl.conf:
# make cinelerra happy
kernel.shmmax = 2147483647

and restart Linux.

Sylvain.

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] new to group

2007-02-06 Thread Chris Reynolds
sorry I didn't realize it was something common. didn't mean to repost something 
that was a common issue, and already known


Chris


muzzol <[EMAIL PROTECTED]> wrote: 2007/2/6, Chris Reynolds :
> well I upgraded to edgy and now I can't get kino to work. hahaha  I also get
> an error message when I launch cinelerra
>
> coid MWindow::init_shm():WARNING:/proc/sys/kernel/shmmax is
> 0x200, which is to low.
> Before running Cinelerra do the following as root:
> echo "0x7ff" > /proc/sys/kernel/shmmax
>

...and the counter grows up

this really should not appear or it should have an option to disable
it or to get more information. someone suggested a link to the FAQ.

if we receive a quarter for every time this question appears we will
be mates of bill gates soon.

-- 

 ^ ^
 O O
(_ _)
muzzol(a)gmail.com

jabber id: muzzol(a)jabber.dk

No atribueixis qualitats humanes als ordinadors.
No els hi agrada.

"El gobierno español sólo habla con terroristas, homosexuales y
catalanes, a ver cuando se decide a hablar con gente normal"
Jiménez Losantos


bomb terrorism bush aznar teletubbies


)ޕêëjf¢–)à–+-
)ޕêëjÉ(•ébžìg¢m¦ÏÿŠx­–)鮉èþf¢–f§þÉ(•ébžìg£ùb²Ø§~ÜŠw¥zºÚ


Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] new to group

2007-02-06 Thread Chris Reynolds
well I upgraded to edgy and now I can't get kino to work. hahaha  I also get an 
error message when I launch cinelerra 

coid MWindow::init_shm():WARNING:/proc/sys/kernel/shmmax is 0x200, which is 
to low. 
Before running Cinelerra do the following as root:
echo "0x7ff" > /proc/sys/kernel/shmmax


Graham Evans <[EMAIL PROTECTED]> wrote:
Chances are what you have is a binary of cinelerra - you can't apply a
patch to cinelerra in that form.

Valentina and muzzol, on this list, are working on ubuntu packaging
(making new binaries) after the previous maintainer retired.  The latest
message to this list on that topic was Jan 20th 2007.  Vale has
cinelerra packages here:

#debian  amd64
deb http://giss.tv/~vale/debian64 ./
deb-src http://giss.tv/~vale/debian64 ./

#ubuntu edgy
deb http://giss.tv/~vale/ubuntu32 ./
deb-src http://giss.tv/~vale/ubuntu32 ./

#ubuntu edgy amd64
deb http://giss.tv/~vale/ubuntu64 ./
deb-src http://giss.tv/~vale/ubuntu64 ./

- but those are packages for ubuntu edgy.

If you want to try building from source just keep searching through the
list archives to work through each problem as you come to it.  Otherwise
you will probably have to wait..

Graham



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] new to group

2007-02-04 Thread Chris Reynolds
I'm going to upgrade to edgy


Graham Evans <[EMAIL PROTECTED]> wrote: On Sun, 2007-02-04 at 17:11 -0800, 
Chris Reynolds wrote:
> I found the filedv.C patch but when I did patch filedv.C <
> filedv.C.patch I got the error message 
> patch:  Can't find file filedv.C : No such file or directory
> 
> is this because I installed cinelerra on Ubuntu Dapper by updating my
> sources.list and then using apt-get to install it? I tried compiling
> it from source but never could get that to work .
> 
> Chris
> 

Chances are what you have is a binary of cinelerra - you can't apply a
patch to cinelerra in that form.

Valentina and muzzol, on this list, are working on ubuntu packaging
(making new binaries) after the previous maintainer retired.  The latest
message to this list on that topic was Jan 20th 2007.  Vale has
cinelerra packages here:

#debian  amd64
deb http://giss.tv/~vale/debian64 ./
deb-src http://giss.tv/~vale/debian64 ./

#ubuntu edgy
deb http://giss.tv/~vale/ubuntu32 ./
deb-src http://giss.tv/~vale/ubuntu32 ./

#ubuntu edgy amd64
deb http://giss.tv/~vale/ubuntu64 ./
deb-src http://giss.tv/~vale/ubuntu64 ./

- but those are packages for ubuntu edgy.

If you want to try building from source just keep searching through the
list archives to work through each problem as you come to it.  Otherwise
you will probably have to wait..

Graham
> 
> Richard Rasker  wrote:
> Op zo, 04-02-2007 te 14:13 -0800, schreef Chris Reynolds:
> > Wanted to say hi and post a question. I'm pretty new to
> Cinelerra and
> > I've run into an issue that I can't figure out. I've got a
> dv file
> > that I captured wth kino in 16:9 and I edited it down. Then
> I wanted
> > to render it back out as dv so I could take it into another
> program.
> > Problem is the aspect ratio keeps getting switched to 4:3
> even though
> > I have it set to 16:9 in the project settings. I'm also
> getting this
> > weird popping sound every 2 seconds or so that isn't in my
> original dv
> > file. Anyone have any suggestions ?.
> 
> I don't know about the aspect ration problems, but the problem
> with
> regular popping sound is an old one - see my question titled
> "Raw DV
> rendering problems?" about this, from September 12th on this
> list (and
> of course the answers). I guess you have an (older)
> pre-packaged
> version; the best solution is to build a recent Cinelerra
> version from
> source, at least until some recent version has been packaged
> into
> whatever package format you use.
> 
> Regards,
> 
> Richard Rasker
>     
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> 
> 
> 
> Chris Reynolds
> 
> http://builderofstuff.com
> 
> "Computers are like air conditioners - They can't do their job
> properly if you open windows."


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] new to group

2007-02-04 Thread Chris Reynolds
yeah after I posted that I figured that would be something that had to be done 
before building the program. I'm still learning linux, well I've only been 
using it for a year so I'm still new to a lot of this. 

Graham Evans <[EMAIL PROTECTED]> wrote: On Sun, 2007-02-04 at 17:11 -0800, 
Chris Reynolds wrote:
> I found the filedv.C patch but when I did patch filedv.C <
> filedv.C.patch I got the error message 
> patch:  Can't find file filedv.C : No such file or directory
> 
> is this because I installed cinelerra on Ubuntu Dapper by updating my
> sources.list and then using apt-get to install it? I tried compiling
> it from source but never could get that to work .
> 
> Chris
> 

Chances are what you have is a binary of cinelerra - you can't apply a
patch to cinelerra in that form.

Valentina and muzzol, on this list, are working on ubuntu packaging
(making new binaries) after the previous maintainer retired.  The latest
message to this list on that topic was Jan 20th 2007.  Vale has
cinelerra packages here:

#debian  amd64
deb http://giss.tv/~vale/debian64 ./
deb-src http://giss.tv/~vale/debian64 ./

#ubuntu edgy
deb http://giss.tv/~vale/ubuntu32 ./
deb-src http://giss.tv/~vale/ubuntu32 ./

#ubuntu edgy amd64
deb http://giss.tv/~vale/ubuntu64 ./
deb-src http://giss.tv/~vale/ubuntu64 ./

- but those are packages for ubuntu edgy.

If you want to try building from source just keep searching through the
list archives to work through each problem as you come to it.  Otherwise
you will probably have to wait..

Graham
> 
> Richard Rasker  wrote:
> Op zo, 04-02-2007 te 14:13 -0800, schreef Chris Reynolds:
> > Wanted to say hi and post a question. I'm pretty new to
> Cinelerra and
> > I've run into an issue that I can't figure out. I've got a
> dv file
> > that I captured wth kino in 16:9 and I edited it down. Then
> I wanted
> > to render it back out as dv so I could take it into another
> program.
> > Problem is the aspect ratio keeps getting switched to 4:3
> even though
> > I have it set to 16:9 in the project settings. I'm also
> getting this
> > weird popping sound every 2 seconds or so that isn't in my
> original dv
> > file. Anyone have any suggestions ?.
> 
> I don't know about the aspect ration problems, but the problem
> with
> regular popping sound is an old one - see my question titled
> "Raw DV
> rendering problems?" about this, from September 12th on this
> list (and
> of course the answers). I guess you have an (older)
> pre-packaged
> version; the best solution is to build a recent Cinelerra
> version from
> source, at least until some recent version has been packaged
> into
> whatever package format you use.
> 
> Regards,
> 
> Richard Rasker
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> 
> 
> 
> Chris Reynolds
> 
> http://builderofstuff.com
> 
> "Computers are like air conditioners - They can't do their job
> properly if you open windows."


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] new to group

2007-02-04 Thread Chris Reynolds
I found the filedv.C patch but when I did patch filedv.C < filedv.C.patch I got 
the error message 
patch:  Can't find file filedv.C : No such file or directory

is this because I installed cinelerra on Ubuntu Dapper by updating my 
sources.list and then using apt-get to install it? I tried compiling it from 
source but never could get that to work .

Chris


Richard Rasker <[EMAIL PROTECTED]> wrote: Op zo, 04-02-2007 te 14:13 -0800, 
schreef Chris Reynolds:
> Wanted to say hi and post a question. I'm pretty new to Cinelerra and
> I've run into an issue that I can't figure out.  I've got a dv file
> that I captured wth kino in 16:9 and I edited it down. Then I wanted
> to render it back out as dv so I could take it into another program.
> Problem is the aspect ratio keeps getting switched to 4:3 even though
> I have it set to 16:9  in the project settings. I'm also getting this
> weird popping sound every 2 seconds or so that isn't in my original dv
> file.  Anyone have any suggestions ?.

I don't know about the aspect ration problems, but the problem with
regular popping sound is an old one - see my question titled "Raw DV
rendering problems?" about this, from September 12th on this list (and
of course the answers). I guess you have an (older) pre-packaged
version; the best solution is to build a recent Cinelerra version from
source, at least until some recent version has been packaged into
whatever package format you use.

Regards,

Richard Rasker


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

[CinCVS] new to group

2007-02-04 Thread Chris Reynolds
Wanted to say hi and post a question. I'm pretty new to Cinelerra and I've run 
into an issue that I can't figure out.  I've got a dv file that I captured wth 
kino in 16:9 and I edited it down. Then I wanted to render it back out as dv so 
I could take it into another program. Problem is the aspect ratio keeps getting 
switched to 4:3 even though I have it set to 16:9  in the project settings. I'm 
also getting this weird popping sound every 2 seconds or so that isn't in my 
original dv file.  Anyone have any suggestions ?.

Thanks,
Chris



Chris Reynolds

http://builderofstuff.com

"Computers are like air conditioners - They can't do their job properly if you 
open windows."

Re: [CinCVS] [Bug 313] Main screen error message.

2006-09-21 Thread Chris
2GB? Is it really needed? What is stored in shm?


On Sep 21 13:10, [EMAIL PROTECTED] wrote:
> http://bugs.cinelerra.org/show_bug.cgi?id=313
> 
> 
> 
> 
> 
> --- Additional Comments From [EMAIL PROTECTED]  2006-09-21 13:10 ---
> Content of web page is:
> 
> The Linux kernel only allows 32MB of shared memory to be allocated by 
> default. 
> This needs to be increased to do anything useful. Run the following command: 
> 
> echo "0x7fff" > /proc/sys/kernel/shmmax 
> 
> Maybe we should add this to the error message...
> 
> 
> 
> 
> --- You are receiving this mail because: ---
> You are the assignee for the bug, or are watching the assignee.
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] No fade line in video track

2006-09-08 Thread Chris
Hi,

press Alt-F (fit fader line scales) and try to use it... It's nasty
nowadays, because cinelerra fits them all to the same scale, which
obviously wrong, video should be in 0-100, audio in about -40 - 6...


On Sep  8 13:12, Jeroen van de Nieuwenhof wrote:
> Hi,
> 
> I use Cinelerra 2.0 on Ubuntu Dapper Drake. My audio track has a white
> fade-line that works right, but my video track only has a blue, green and
> red line, but no white fade line. Look at this screenshot:
> http://lab.vandenieuwenhof.nl/files/cinelerra.png.
> 
> Does anyone know how i can get the white line in my video track or do i
> miss something and should i use some other option/line?
> 
> Jeroen van de Nieuwenhof
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] titler fade out flicker

2006-07-05 Thread Chris
I think, the current fader state is unusable. The problem is, that
the video and audio min/max levels have to set at once, but their
usual range differs (as you writes it too). To scale the audio
with Alt-F and with the input box below is good. But video is absolutely
different, it should not be touched, the min/max=0/100 is always
appropriate.

Developers, could the video fader range be detached from the audio
range??

Chris


On Jul  4 07:48, Joe Friedrichsen wrote:
> Brendan Conoboy wrote:
> >Joe Friedrichsen wrote:
> >>I've noticed that in some videos I've made as well - the background 
> >>appears to change the way the title fades in. This is still 
> >>different. In the sample file 
> >>(http://www.f-forge.com/?d=EdD1UKgj9LQsCupcxJwR), the flicker is 
> >>quite obvious - it's not coming from a contrast with the background. 
> >>Rather, the title slowly and smoothly fades out until the final frame 
> >>of fading out, at which point that single last frame shows the title 
> >>at full visibility.
> >>
> >>I can observe this flicker in cinelerra's compositor during playback 
> >>and during frame-by-frame advancement.
> >
> >I haven't been following this thread closely, but it does sound like 
> >something I experienced and resolved.  The problem was that I was 
> >using fading keyframes and setting them by hand instead of using the 
> >slider. That is to say, I'd press the mouse when the cursor was over 
> >the part of the timeline I wanted to fade then drag it downward until 
> >my compositor window faded out.  Because of Cinelerra 2's quirky 
> >feature, for some of the last frames it would actually go past fading 
> >out and back into visible again.  The resolution for this was to use 
> >the slider instead of dragging on the timeline.
> 
> I was under the impression that the video fader was broken in Cinelerra 
> 2, glad to hear it's working! In trying just now, I've noticed that what 
> I'll call the 'asset fader range' (or the limits for the minimum and 
> maximum of the fade line) are a bit inconvenient. Audio generally fades 
> in decibels below zero and video fades in integers between 0 and 100. 
> Setting the limits to -40, 10 helps for fading audio, but doesn't help 
> with video (which benefits from a 0-100 scale). What do Cinelerra users 
> use for their limits to keep sensitivity?
> 
> Sorry for the OT wander. . . Unfortunately, my problem isn't a video 
> track fader flicker, but the Title effect in Video Effects.
> 
> Joe
> 
> 
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] audio fading bug?

2006-06-01 Thread Chris
Thank you! It works. But dragging the fader always on the left side is not too
confortable... 

However I find a way to get the keyframe dragging work. Determine the
lowest and highest value the fader can set (as you suggested) then
write these values on the bottom middle into the small editbox. For me
I wrote "-40 to 6". This rescales the audio track fader, so it won't
be possible to drag the key-frames past the allowed range.

Chris


On May 31 19:29, William Witt wrote:
> I had this problem too, the issue is that you are dragging the 
> key-frames.  When the key-frame gets past the max on the fader (which 
> you can do by dragging), the ganged track does not increase any 
> further.  When the track is then lowered, the the ganged track moves 
> proportionately until it bottoms out.  The way I solved the problem was 
> to avoid dragging key-frames when possible.   Instead, select the point 
> in time that you would like the key-frame placed (ensure the key is 
> selected), then slide the fader.  Since you can't go beyond min or max, 
> the audio fade stays synchronized.  If there is a bug, it is that you 
> can drag the key-frames past min and max.
> 
> Will
> 
> Chris wrote:
> >Hi,
> >
> >please help! :) I don't have more idea, why can't I control the stereo 
> >audio fade level simultaneously, even if the gauges are switched on. It 
> >seems, as the two tracks would be fitted in different ranges. 
> >
> >See this small recording as an explanation:
> >http://nagyon.cjb.hu/audiobug.avi
> >
> >The mouse is unfortunately not seen. I moved simply the (new) keypoints.
> >
> >What am I doing wrong?
> >
> >Note: Alt-F did not help...
> >
> >Chris
> >
> >___
> >Cinelerra mailing list
> >Cinelerra@skolelinux.no
> >https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> >
> >
> >
> >  
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


[CinCVS] audio fading bug?

2006-05-31 Thread Chris
Hi,

please help! :) I don't have more idea, why can't I control the stereo audio 
fade level simultaneously, even if the gauges are switched on. It seems, as 
the two tracks would be fitted in different ranges. 

See this small recording as an explanation:
http://nagyon.cjb.hu/audiobug.avi

The mouse is unfortunately not seen. I moved simply the (new) keypoints.

What am I doing wrong?

Note: Alt-F did not help...

Chris

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] No fader line on video tracks?

2006-05-12 Thread Chris
Pff, thank you! :-)
I've searched it for a half an hour... Easter egg.
Chris

On May 12 11:35, Andraz Tori wrote:
> press alt+f
> 
> On pet, 2006-05-12 at 11:23 +0200, Chris wrote:
> > Hi,
> > 
> > I upgraded in debian to 2.0.0-1svn20060507, and now I find no fader line
> > on the video tracks. I've switched on everything in the view menu, but
> > no success. Did I missed something, or is it a bug in this version?
> > 
> > Thanks you,
> > Chris
> > 
> > ___
> > Cinelerra mailing list
> > Cinelerra@skolelinux.no
> > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


[CinCVS] No fader line on video tracks?

2006-05-12 Thread Chris
Hi,

I upgraded in debian to 2.0.0-1svn20060507, and now I find no fader line
on the video tracks. I've switched on everything in the view menu, but
no success. Did I missed something, or is it a bug in this version?

Thanks you,
Chris

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] Why mailing list?

2006-04-26 Thread Chris Albertson

Kind of a moot argument really


>   It does not make much of a difference for me, as my mail client is
> also a news client.  One bonus of USENET is massive replication.
> You don't get that with your own, private NNTP server.

I doubt cinelerra@skolelinux.no needs "massive replication"
> 
> > dump incomming mail to a local nntp server then point your news
> reader
> > to localhost and be happy.  Unfirewall the nntp port and other
> > like-minded usnet fans can be happy too
> 
>   My laptop is occationally on the move, so it will not always
> be reachable, nor will it resolve in DNS.  I don't think typical
> _home_ networks offer the service quality and availability that
> a server with hundreds of users should have.

It CAN be reachable via DNS.  Look at www.dyndns.org it's a free
service.  You run a script on the notebook that sets a DNS entry
for your DHCP assigned IP. Your DHCP client sends a message to
a DNS server at dyndns.org




>   If and when I get a share in a hosting pool, I might set up my
> very own NNTP server, a bittorrent tracker and whatnot.  I am not
> running it out of my dinky, ever-changing-IP ADSL connection.

By brother says something to people building web sites:  "Expect
about as many people to see your web site as saw you take a shower
this morning."  Applied to the average home user's web site, averaged
over a 90 day period he is about dead on with his traffic estimate.

I run a server using ADSL with DHCP and I update DNS every time the IP
changes.  It's good enough for a site with only a couple hundred page
views per day.  I ran a low volume Mailman list server too.


Chris Albertson
  Home:   310-376-1029  [EMAIL PROTECTED]
  Cell:   310-990-7550
  Office: 310-336-5189  [EMAIL PROTECTED]
  KG6OMK

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] The Mute Alpha bar is broken for video clips

2006-03-29 Thread Chris Cherrett
Sorry I meant the fade (white line). I press alt+f but I cannot add key frames 
to the line. Am I doing something wrong?

Thanks

On Tuesday 28 March 2006 01:21 am, Andraz Tori wrote:
> press alt+f
>
> On pon, 2006-03-27 at 17:58 -0700, [EMAIL PROTECTED] wrote:
> > I am resubmitting this bug. It does not appear in bugzilla for some
> > reason. Must be a bugzilla bug!
> >
> > This problem only seems to exist with the video tracks and not the audio.
> >
> > The Video Mute function. (View->Mute or white line on track) is broken.
> > The white bar that should show inside the video track is lost somewhere
> > out of site
> > in the title. If you use the patch bay slider you can get visibility of
> > the bar
> > by sliding the slider below half. It seems that the calibration of the
> > bar is broken as well. What use to be normal editing levels no longer
> > works. 0 is somewhere off the bottom and 100 is off the top. If you drag
> > keys around you can only drag them within the confines however when using
> > the slider in the patch bay the white bar disappears out of site.
> >
> > I use this function a lot and would love it back.
> >
> > Great work guys!
> >
> > Thanks
> >
> > ___
> > Cinelerra mailing list
> > Cinelerra@skolelinux.no
> > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
>
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra