Re: [CinCVS] cinelerra movie

2006-03-07 Thread Benjamin Green

On Tue, 07 Mar 2006 23:01:45 -, kysucix <[EMAIL PROTECTED]> wrote:


Nicolas wrote:

Kysucix,

A/V is out of sync on the .avi file... :-/


Ok I'll just remove the avi one :)

ogg theora is enough :)
thx
kysucix

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



I can't seem to download the Ogg one, only the AVI!

--
--
Ben Green

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


Re: [CinCVS] cinelerra movie

2006-03-07 Thread Scott C. Frase
Love the quality Marcin!  What did you film that on?
scott

On Wed, 2006-03-08 at 07:44 +1000, mark stavar wrote:
> Marcin,
> 
> I have to say that I am impressed, including chroma-key!
> 
> Very fine quality.  I have already sent the link to a hang-gliding
> friend.
> 
> Well done,
> 
> marks
> 
> On 3/6/06, Marcin Kostur <[EMAIL PROTECTED]> wrote:
> Hi there,
> 
> Let me present a short movie i made with cinelerra 2.0.
> It would not be possible without this mailing list
> many tips and mostly the  "fader patch", so thanks a lot!.
> 
> click on:
> 
> http://marcin.glidingcontest.org/   :: Movies 2006 :: a dream
> 
> 
> the best
> 
> Marcin
> 
> ___
> Cinelerra mailing list 
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> 
> 
> 
> -- 
> Mark Stavar
> 
> Swan Dancer Productions
> 
> Email:  [EMAIL PROTECTED]
> Mobile: 0410 638 671
> 
> http://www.the-writers-retreat.com/


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


Re: [CinCVS] null plugin keyframes (how to unexplode your xml files!)

2006-03-07 Thread Dan Streetman

Yep, I had (have...) the same problem.  I don't think it's tweaking while 
playing back tho, as it's happened many times to me and I always stop 
playback before tweaking.  I don't really know what's causing it.  
It's certainly annoying as hell.  

What I did to fix the "broken" xml file was create a sed script-file 
containing:
s,,,g

and run the xml file through it:
cat file.xml | tr -d '\n' | sed -f sedscriptfile > fixed.xml

although using perl should work fine too.


On Tue, 7 Mar 2006, Brendan Conoboy wrote:

>Hi everyone,
>
>As a novice cinelerra user, I've run into a heinous problem every now 
>and again.  After doing some work on a video, I'll save, do some more, 
>save for a day or two.  Normally when I start up again, the xml file 
>is a few dozen to a few hundred k.  Every now and again, it's 5 
>megabytes large, fails to load, and makes me weep in an unmanly way 
>(tm).  The physical characteristic of the problem appears to be null 
>keyframes being inserted into the xml file, like this:
>
>
>
>
>
>
>Thousands of them.  Tens of thousands.  Hundreds of thousands of them.
>
>As to where they come from, it appears to be the result of tweaking 
>plugin parameters *while* cinelerra is doing playback.  I've not 
>investigated this problem, but I do have a bandaid of a solution, 
>written in perl:
>
>#!/usr/bin/perl
>while($_=)
>   {
>   if ( $_ =~ /PLUGIN LENGTH="0"/ )
> {
> $skipped=0;
> while($skipped==0)
>   {
>   $_=;
>   if ( $_ =~ /\/PLUGIN/ )  { $skipped=1; }
> }
>   }
>   print $_;
>}
>
>To use it, just save it as 'unexplode', make it executable and use 
>"unexplode < bloated.xml > lean.xml" to strip out all plugins of length 
>0.  Hopefully there aren't any desirable plugins of length 0!
>
>-Brendan
>
>___
>Cinelerra mailing list
>Cinelerra@skolelinux.no
>https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
>

-- 
Dan Streetman
[EMAIL PROTECTED]
-
186,272 miles per second:
It isn't just a good idea, it's the law!

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


Re: [CinCVS] cinelerra movie

2006-03-07 Thread kysucix
Nicolas wrote:
> Kysucix,
> 
> A/V is out of sync on the .avi file... :-/

Ok I'll just remove the avi one :)

ogg theora is enough :)
thx
kysucix

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


[CinCVS] null plugin keyframes (how to unexplode your xml files!)

2006-03-07 Thread Brendan Conoboy

Hi everyone,

As a novice cinelerra user, I've run into a heinous problem every now 
and again.  After doing some work on a video, I'll save, do some more, 
save for a day or two.  Normally when I start up again, the xml file 
is a few dozen to a few hundred k.  Every now and again, it's 5 
megabytes large, fails to load, and makes me weep in an unmanly way 
(tm).  The physical characteristic of the problem appears to be null 
keyframes being inserted into the xml file, like this:







Thousands of them.  Tens of thousands.  Hundreds of thousands of them.

As to where they come from, it appears to be the result of tweaking 
plugin parameters *while* cinelerra is doing playback.  I've not 
investigated this problem, but I do have a bandaid of a solution, 
written in perl:


#!/usr/bin/perl
while($_=)
  {
  if ( $_ =~ /PLUGIN LENGTH="0"/ )
{
$skipped=0;
while($skipped==0)
  {
  $_=;
  if ( $_ =~ /\/PLUGIN/ )  { $skipped=1; }
}
  }
  print $_;
}

To use it, just save it as 'unexplode', make it executable and use 
"unexplode < bloated.xml > lean.xml" to strip out all plugins of length 
0.  Hopefully there aren't any desirable plugins of length 0!


-Brendan

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


[CinCVS] [Bug 238] New: crash when import last job. (xml)

2006-03-07 Thread bugzilla-daemon
http://bugs.cinelerra.org/show_bug.cgi?id=238

   Summary: crash when import last job. (xml)
   Product: Cinelerra
   Version: 2.0
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: critical
  Priority: Critical
 Component: File Loading
AssignedTo: cinelerra@skolelinux.no
ReportedBy: [EMAIL PROTECTED]


Crash when I work with this job. the error its'this:
signal_entry: got SIGSEGV my pid=5527 execution table size=0:
signal_entry: lock table size=46
0x8a4c160 PlaybackEngine::start_lock PlaybackEngine::create_objects *
0x8a4bef8 CWindowTool::input_lock CWindowTool::run 
0x8ad61f8 PlaybackEngine::start_lock PlaybackEngine::create_objects *
0x8b17328 MainIndexes::input_lock MainIndexes::run 1 *
0x8b9e150 BC_Repeater::startup_lock BC_Repeater::initialize *
0x857e6d0 BC_Repeater::startup_lock BC_Repeater::initialize *
0x8619e00 BC_Repeater::startup_lock BC_Repeater::initialize *
0x862e8a0 BC_Repeater::startup_lock BC_Repeater::initialize *
0x865c028 BC_Repeater::startup_lock BC_Repeater::initialize *
0x8560518 BC_Repeater::startup_lock BC_Repeater::initialize *
0x8576080 BC_Repeater::startup_lock BC_Repeater::initialize *
0x8bfe9d8 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x8bfe9d8 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x88f8258 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x88f8258 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x8a854b8 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x88f8258 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x8a6bd38 TransportQue::output_lock PlaybackEngine::run *
0x8af6468 TransportQue::output_lock PlaybackEngine::run *
0x8b173a0 MainIndexes::interrupt_lock MainIndexes::run 2 *
0x91600c0 RotateEngine::input_lock RotateEngine::run 
0x8b9e1a8 BC_Repeater::repeat_lock BC_Repeater::run *
0x968f678 CommonRender::start_lock CommonRender::start_command *
0x8af6468 TransportQue::output_lock PlaybackEngine::run 
0x9e86b58 CommonRender::start_lock CommonRender::start_command *
0x9172f98 RotateEngine::input_lock RotateEngine::run 
0x8a6bd38 TransportQue::output_lock PlaybackEngine::run 
0x9ea9e68 LoadPackage::completion_lock LoadServer::process_packages 1 *
0x9ea9e10 LoadClient::completion_lock LoadServer::process_packages 2 *
0x9ea9db8 LoadClient::input_lock LoadClient::run *
0x9ea9db8 LoadClient::input_lock LoadClient::run 
0x8501f88 BC_Repeater::repeat_lock BC_Repeater::run *
0x8a71370 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x8a854b8 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x89e3190 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x8b9f658 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x8a71370 BC_WindowBase::event_condition BC_WindowBase::get_event 
0x8a854b8 BC_WindowBase::event_condition BC_WindowBase::get_event 
0x89e3190 BC_WindowBase::event_condition BC_WindowBase::get_event 
0x8b9f658 BC_WindowBase::event_condition BC_WindowBase::get_event 
0x88f8258 BC_WindowBase::event_condition BC_WindowBase::get_event *
0x88f8258 BC_WindowBase::event_condition BC_WindowBase::get_event 
0x8b9e1a8 BC_Repeater::repeat_lock BC_Repeater::run 
0x8501f88 BC_Repeater::repeat_lock BC_Repeater::run 
0x857b350 IndexThread::input_lock IndexFile::create_index 1 *
0x857b400 IndexThread::input_lock IndexFile::create_index 1 *
BC_Signals::dump_buffers: buffer table size=0
BC_Signals::delete_temps: deleting 0 temp files
SigHandler::signal_handler total files=0



--- 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


Re: [CinCVS] cinelerra movie

2006-03-07 Thread mark stavar
Marcin,I have to say that I am impressed, including chroma-key!Very fine quality.  I have already sent the link to a hang-gliding friend.Well done,marks
On 3/6/06, Marcin Kostur <[EMAIL PROTECTED]> wrote:
Hi there,Let me present a short movie i made with cinelerra 2.0.It would not be possible without this mailing listmany tips and mostly the  "fader patch", so thanks a lot!.click on:
http://marcin.glidingcontest.org/   :: Movies 2006 :: a dreamthe bestMarcin___Cinelerra mailing list
Cinelerra@skolelinux.nohttps://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
-- Mark StavarSwan Dancer ProductionsEmail:  [EMAIL PROTECTED]Mobile: 0410 638 671
http://www.the-writers-retreat.com/


Re: [CinCVS] cinelerra movie

2006-03-07 Thread Nicolas
On Tue, Mar 07, 2006 at 10:05:47PM +0100, kysucix wrote:
> Hi. here is my last video done completely with free sw.
> Mainly cinelerra but also terminatorx, audacity and gimp. (plus gnu
> linux of course ).
> It's a "message" from Stefano Maffulli ( Chancellor of Chapter Italy fsf
> europe).
> 
> I hope you enjoy:
> http://dyne.org/~kysucix/video/ld2005.ogg
> or
> http://dyne.org/~kysucix/video/linuxday2005.avi
> 
> Bye
> kysucix
> P.S. I'll add these tracks in cinelerra wiki

Kysucix,

A/V is out of sync on the .avi file... :-/

Nicolas.

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


Re: [CinCVS] cinelerra movie

2006-03-07 Thread kysucix
Marcin Kostur wrote:
> Hi there,
> 
> Let me present a short movie i made with cinelerra 2.0.
> It would not be possible without this mailing list
> many tips and mostly the  "fader patch", so thanks a lot!.
> 
> click on:
> 
> http://marcin.glidingcontest.org/   :: Movies 2006 :: a dream

Hi. here is my last video done completely with free sw.
Mainly cinelerra but also terminatorx, audacity and gimp. (plus gnu
linux of course ).
It's a "message" from Stefano Maffulli ( Chancellor of Chapter Italy fsf
europe).

I hope you enjoy:
http://dyne.org/~kysucix/video/ld2005.ogg
or
http://dyne.org/~kysucix/video/linuxday2005.avi

Bye
kysucix
P.S. I'll add these tracks in cinelerra wiki

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


RE: [CinCVS] Divx audio failure

2006-03-07 Thread Scott Warfield
A little further investigation yielded more info.  Cinelerra doesn't like a
cbr encoded audio.  When I use vbr, it works great.  Anyone understand this
behavior?   

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Scott Warfield
> Sent: Tuesday, March 07, 2006 8:17 AM
> To: cinelerra@skolelinux.no
> Subject: RE: [CinCVS] Divx audio failure
> 
> That did it, thank you!
> 
> I've also learned that I can bypass autogk completely by 
> encoding the mpegs to divx with mencoder.  Time to set up 
> some cron jobs! =)
> 
> Still, I am somewhat curious about the original problem, but 
> I can at least start doing some editing
> 
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of 
> valentina messeri
> > Sent: Monday, March 06, 2006 6:28 PM
> > To: cinelerra@skolelinux.no
> > Subject: RE: [CinCVS] Divx audio failure
> > 
> > > I converted this using a version 5 divx codec 
> > > www.malamber.org/oreck.avi
> > 
> > i use this command to re-encode your archive
> > 
> >  mencoder -of avi -o oreck_ok.avi -ovc copy -oac mp3lame oreck.avi
> > 
> > install mplayer and mencoder in your FC4 system
> > 
> > :-)
> > 
> > vale
> > 
> > > mplayer oreckok.avi
> > 
> > > Thank you
> > >
> > >> -Original Message-
> > >> From: [EMAIL PROTECTED] 
> > >> [mailto:[EMAIL PROTECTED] On Behalf Of Andraz Tori
> > >> Sent: Monday, March 06, 2006 12:58 PM
> > >> To: cinelerra@skolelinux.no
> > >> Subject: Re: [CinCVS] Divx audio failure
> > >>
> > >> upload a small example and we'll see what we can do. the 
> timeframe 
> > >> for that cannot be estimated since we are all extremely busy.
> > >>
> > >> On pon, 2006-03-06 at 12:37 -0500, Scott Warfield wrote:
> > >> > Hello all,
> > >> >First off, I apologize in advance if this is the wrong
> > >> forum for
> > >> > issues like this.  I'm very new to Cinelerra, but
> > pleased with what
> > >> > I've seen thus far.
> > >> >
> > >> >My intent is to edit Divx files natively in Cinelerra.
> > >> The problem I
> > >> > have is Cinelerra isn't recognizing the compressed audio
> > (MP3).  It
> > >> > displays the video just fine.  I normally encode recorded
> > >> mpegs on a
> > >> > Windows system using AutoGK.  I've tried versions 5 and 6
> > >> of the codec
> > >> > with the same results.  Now, if I leave the audio 
> uncompressed, 
> > >> > Cinelerra handles the audio.
> > >> >
> > >> >I'm running Cinelerra built from source on a Fedora
> > >> Core 3 system and
> > >> > tested on FC4 from rpm's with the same result.
> > >> >
> > >> >Anyone have an idea as to what I'm doing wrong? 
>  Interestingly 
> > >> > enough, Adobe Premier handles to audio perfectly, but not
> > >> the video.
> > >> > I've another Windows app that handles both just fine,
> > but I really
> > >> > desire to do everything under Linux.
> > >> >
> > >> > ---
> > >> > Scott Warfield
> > >> > Internet Security Systems
> > >> > X-Force Developer
> > >> > PGP Key: 0x70AB7F3D
> > >> > ---
> > >> >
> > >> >
> > >> >
> > >> > ___
> > >> > 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
> > >
> > 
> > 
> > 
> > ___
> > 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


RE: [CinCVS] Divx audio failure

2006-03-07 Thread Scott Warfield
That did it, thank you!

I've also learned that I can bypass autogk completely by encoding the mpegs
to divx with mencoder.  Time to set up some cron jobs! =)

Still, I am somewhat curious about the original problem, but I can at least
start doing some editing

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of valentina messeri
> Sent: Monday, March 06, 2006 6:28 PM
> To: cinelerra@skolelinux.no
> Subject: RE: [CinCVS] Divx audio failure
> 
> > I converted this using a version 5 divx codec 
> > www.malamber.org/oreck.avi
> 
> i use this command to re-encode your archive
> 
>  mencoder -of avi -o oreck_ok.avi -ovc copy -oac mp3lame oreck.avi
> 
> install mplayer and mencoder in your FC4 system
> 
> :-)
> 
> vale
> 
> > mplayer oreckok.avi
> 
> > Thank you
> >
> >> -Original Message-
> >> From: [EMAIL PROTECTED]
> >> [mailto:[EMAIL PROTECTED] On Behalf Of Andraz Tori
> >> Sent: Monday, March 06, 2006 12:58 PM
> >> To: cinelerra@skolelinux.no
> >> Subject: Re: [CinCVS] Divx audio failure
> >>
> >> upload a small example and we'll see what we can do. the timeframe 
> >> for that cannot be estimated since we are all extremely busy.
> >>
> >> On pon, 2006-03-06 at 12:37 -0500, Scott Warfield wrote:
> >> > Hello all,
> >> >  First off, I apologize in advance if this is the wrong
> >> forum for
> >> > issues like this.  I'm very new to Cinelerra, but 
> pleased with what 
> >> > I've seen thus far.
> >> >
> >> >  My intent is to edit Divx files natively in Cinelerra.
> >> The problem I
> >> > have is Cinelerra isn't recognizing the compressed audio 
> (MP3).  It 
> >> > displays the video just fine.  I normally encode recorded
> >> mpegs on a
> >> > Windows system using AutoGK.  I've tried versions 5 and 6
> >> of the codec
> >> > with the same results.  Now, if I leave the audio uncompressed, 
> >> > Cinelerra handles the audio.
> >> >
> >> >  I'm running Cinelerra built from source on a Fedora
> >> Core 3 system and
> >> > tested on FC4 from rpm's with the same result.
> >> >
> >> >  Anyone have an idea as to what I'm doing wrong?  Interestingly 
> >> > enough, Adobe Premier handles to audio perfectly, but not
> >> the video.
> >> > I've another Windows app that handles both just fine, 
> but I really 
> >> > desire to do everything under Linux.
> >> >
> >> > ---
> >> > Scott Warfield
> >> > Internet Security Systems
> >> > X-Force Developer
> >> > PGP Key: 0x70AB7F3D
> >> > ---
> >> >
> >> >
> >> >
> >> > ___
> >> > 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
> >
> 
> 
> 
> ___
> 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