Re: [ubuntu-uk] video editing

2008-01-21 Thread Robert McWilliam
On Mon, Jan 21, 2008 at 09:46:03PM +, Javad Ayaz wrote:
> well
> cd /media/sda5/Nuzhet shadi/mehndi edited/ cat mehndi1.vob mehndi2.vob >
> mehndi_joined.vob
> 

OK, quick command line primer. Each program you want to run should
either be at the start of the line or be indicated in some other way
that it is a program[1]. After the program name in a command line will
come any arguments that you want to give the program, these should be
separated by spaces. The fact that spaces separate arguments is one of
the problems you've got as there is a space in the path you want to
use as an argument. In this case you have to tell the shell that this
space is part of a single argument not separating two. The easiest way
to do this is to put double quotes round the argument. 

What you have mentioned above is actually two commands, did you run it
as two commands or as one?

1st command (including fix for the space):
cd "/media/sda5/Nuzhet shadi/mehndi edited/"

This will change the working directory to the path specified. 

2nd command:
cat mehndil1.vob mehndi2.vob > mehndi_joined.vob

This calls cat on the first two files, and redirects the output to
mehndi_joined.vob. cat conCATenates multiple files together and
outputs the results to the standard output. The > symbol redirects the
standard output from the preceding command to somewhere else, in this
case the file specified.

> still resulted in nothing! :(

I'm willing to bet money it didn't ;) It probably didn't do what was
desired but telling us what did happen (Were there any error messages?
What were they? Was the computer busy for a while? ...) makes it
easier to figure out where things went wrong. 

All that being said importing the two files to whichever video editor
you were using is probably an easier approach if you're not
comfortable with the command line. 

Robert

[1] e.g. what follows a | symbol is another program, this means that
the output of the command in front of the | is the input for the
command following the | 
If that made no sense don't worry about it too much.


Robert McWilliam [EMAIL PROTECTED]www.ormiret.com

What if the Hokey Kokey IS what it's all about?

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Mark Fraser
On Monday 21 January 2008 20:32:18 Chris Smith wrote:
> Javad Ayaz wrote:
> > This command in terminal i take it?
> > Also do i need to specify the path of the files? or just file1.vob
> > file2.vob ?
>
> Yeah this is a command to be run in the terminal. You need to specify
> the paths to the files, I was assuming you were in the directory
> containing them. You could however do this:
>
> cat /path/to/file1.vob /path/to/file2.vob > /path/to/output.vob
>
> The output file will be created for you be the shell.


Managed to get that working here, merged 4 .vob files into 1. Just need to 
find something that will all me to edit them, have tried avidemux, but that 
needs the file to be put through projectx so that the audio and video are 
synced together.


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
to be honest i just had exactly that same idea just now...just dragged it to
kinowill post here how i get on!!!
:)

On 21/01/2008, Kris Douglas <[EMAIL PROTECTED]> wrote:
>
>
>
> On 21/01/2008, Javad Ayaz <[EMAIL PROTECTED]> wrote:
> >
> > well
> > cd /media/sda5/Nuzhet shadi/mehndi edited/ cat mehndi1.vob mehndi2.vob >
> > mehndi_joined.vob
> >
> > still resulted in nothing! :(
> >
> > On 21/01/2008, Tom Bamford <[EMAIL PROTECTED]> wrote:
> > >
> > > Javad Ayaz wrote:
> > > > tried both even
> > > > cd /media/sda5/nuzhet shadi/mehndi edited/ cat mehndi1.vob
> > > mehndi2.vob >
> > > > mehndi_joined.vob
> > > >
> > > > but still no joy!!
> > > > The N in nuzhet is upper case. Could that be it?
> > > >
> > >
> > > Yes, you must specify an uppercase N as Linux filenames are case
> > > sensitive.
> > >
> > > Tom
> > >
> > > --
> > > ubuntu-uk@lists.ubuntu.com
> > > https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> > > https://wiki.kubuntu.org/UKTeam/
> > >
> >
> >
> > --
> > ubuntu-uk@lists.ubuntu.com
> > https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> > https://wiki.kubuntu.org/UKTeam/
> >
> >
> I am not a video editor myself, but can't you just drag the 2 scenes into
> a video editor and export them together as one file? You can in MS Movie
> Maker, I don't see what difference it would make in apps such as kino, where
> I believe it works the same way.
>
> --
> Kris Douglas
>   Softdel Limited Hosting Services
>
>   Web: www.softdel.net
>   Mail: [EMAIL PROTECTED]
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Kris Douglas
On 21/01/2008, Javad Ayaz <[EMAIL PROTECTED]> wrote:
>
> well
> cd /media/sda5/Nuzhet shadi/mehndi edited/ cat mehndi1.vob mehndi2.vob >
> mehndi_joined.vob
>
> still resulted in nothing! :(
>
> On 21/01/2008, Tom Bamford <[EMAIL PROTECTED]> wrote:
> >
> > Javad Ayaz wrote:
> > > tried both even
> > > cd /media/sda5/nuzhet shadi/mehndi edited/ cat mehndi1.vob mehndi2.vob>
> > > mehndi_joined.vob
> > >
> > > but still no joy!!
> > > The N in nuzhet is upper case. Could that be it?
> > >
> >
> > Yes, you must specify an uppercase N as Linux filenames are case
> > sensitive.
> >
> > Tom
> >
> > --
> > ubuntu-uk@lists.ubuntu.com
> > https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> > https://wiki.kubuntu.org/UKTeam/
> >
>
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
>
I am not a video editor myself, but can't you just drag the 2 scenes into a
video editor and export them together as one file? You can in MS Movie
Maker, I don't see what difference it would make in apps such as kino, where
I believe it works the same way.

-- 
Kris Douglas
  Softdel Limited Hosting Services

  Web: www.softdel.net
  Mail: [EMAIL PROTECTED]
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
well
cd /media/sda5/Nuzhet shadi/mehndi edited/ cat mehndi1.vob mehndi2.vob >
mehndi_joined.vob

still resulted in nothing! :(

On 21/01/2008, Tom Bamford <[EMAIL PROTECTED]> wrote:
>
> Javad Ayaz wrote:
> > tried both even
> > cd /media/sda5/nuzhet shadi/mehndi edited/ cat mehndi1.vob mehndi2.vob >
> > mehndi_joined.vob
> >
> > but still no joy!!
> > The N in nuzhet is upper case. Could that be it?
> >
>
> Yes, you must specify an uppercase N as Linux filenames are case
> sensitive.
>
> Tom
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Tom Bamford
Javad Ayaz wrote:
> tried both even
> cd /media/sda5/nuzhet shadi/mehndi edited/ cat mehndi1.vob mehndi2.vob > 
> mehndi_joined.vob
> 
> but still no joy!!
> The N in nuzhet is upper case. Could that be it?
> 

Yes, you must specify an uppercase N as Linux filenames are case sensitive.

Tom

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
tried both even
cd /media/sda5/nuzhet shadi/mehndi edited/ cat mehndi1.vob mehndi2.vob >
mehndi_joined.vob

but still no joy!!
The N in nuzhet is upper case. Could that be it?

On 21/01/2008, Tom Bamford <[EMAIL PROTECTED]> wrote:
>
> Stephen Garton wrote:
> > On 21/01/2008, Javad Ayaz <[EMAIL PROTECTED]> wrote:
> >> i tried this
> >>
> >> cat /dev/sda5/nuzhet shadi/mehndi edited/mehndi1.vob /dev/sda5/nuzhet
> >> shadi/mehndi edited/mehndi2.vob >/dev/sda5.vob
> >>
> >> but it didnt work!!
> >>
> >> any ideas?
> >>
> > Javad,
> >
> > Try cat "/dev/sda5/nuzhet shadi/mehndi edited/mehndi1.vob"
> > "/dev/sda5/nuzhet shadi/mehndi edited/mehndi2.vob" > "/dev/sda5/nuzhet
> > shadi/mehndi edited/mehndi_all.vob"
> >  or
> >
> > cd "/dev/sda5/nuzhet shadi/mehndi edited/"
> > cat mehndi1.vob mehndi2.vob > mehndi_joined.vob
> >
> You're specifying the device file rather than the mount point. Rather
> use the directory where the hda5 partition is mounted, eg. /mnt/hda5 or
> /media/hda5
>
> Tom
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Tom Bamford
Stephen Garton wrote:
> On 21/01/2008, Javad Ayaz <[EMAIL PROTECTED]> wrote:
>> i tried this
>>
>> cat /dev/sda5/nuzhet shadi/mehndi edited/mehndi1.vob /dev/sda5/nuzhet
>> shadi/mehndi edited/mehndi2.vob >/dev/sda5.vob
>>
>> but it didnt work!!
>>
>> any ideas?
>>
> Javad,
> 
> Try cat "/dev/sda5/nuzhet shadi/mehndi edited/mehndi1.vob"
> "/dev/sda5/nuzhet shadi/mehndi edited/mehndi2.vob" > "/dev/sda5/nuzhet
> shadi/mehndi edited/mehndi_all.vob"
>  or
> 
> cd "/dev/sda5/nuzhet shadi/mehndi edited/"
> cat mehndi1.vob mehndi2.vob > mehndi_joined.vob
> 
You're specifying the device file rather than the mount point. Rather 
use the directory where the hda5 partition is mounted, eg. /mnt/hda5 or 
/media/hda5

Tom

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Stephen Garton
On 21/01/2008, Javad Ayaz <[EMAIL PROTECTED]> wrote:
> i tried this
>
> cat /dev/sda5/nuzhet shadi/mehndi edited/mehndi1.vob /dev/sda5/nuzhet
> shadi/mehndi edited/mehndi2.vob >/dev/sda5.vob
>
> but it didnt work!!
>
> any ideas?
>
Javad,

Try cat "/dev/sda5/nuzhet shadi/mehndi edited/mehndi1.vob"
"/dev/sda5/nuzhet shadi/mehndi edited/mehndi2.vob" > "/dev/sda5/nuzhet
shadi/mehndi edited/mehndi_all.vob"
 or

cd "/dev/sda5/nuzhet shadi/mehndi edited/"
cat mehndi1.vob mehndi2.vob > mehndi_joined.vob

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
i tried this

cat /dev/sda5/nuzhet shadi/mehndi edited/mehndi1.vob /dev/sda5/nuzhet
shadi/mehndi edited/mehndi2.vob >/dev/sda5.vob

but it didnt work!!

any ideas?

On 21/01/2008, Chris Smith <[EMAIL PROTECTED]> wrote:
>
> Javad Ayaz wrote:
> > This command in terminal i take it?
> > Also do i need to specify the path of the files? or just file1.vob
> file2.vob
> > ?
>
> Yeah this is a command to be run in the terminal. You need to specify
> the paths to the files, I was assuming you were in the directory
> containing them. You could however do this:
>
> cat /path/to/file1.vob /path/to/file2.vob > /path/to/output.vob
>
> The output file will be created for you be the shell.
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Chris Smith
Javad Ayaz wrote:
> This command in terminal i take it?
> Also do i need to specify the path of the files? or just file1.vob file2.vob
> ?

Yeah this is a command to be run in the terminal. You need to specify
the paths to the files, I was assuming you were in the directory
containing them. You could however do this:

cat /path/to/file1.vob /path/to/file2.vob > /path/to/output.vob

The output file will be created for you be the shell.

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] Chocolate Oranges WAS: By way of introduction

2008-01-21 Thread Kirrus

- "Andrew Jenkins" <[EMAIL PROTECTED]> wrote:
> Dianne Reuby wrote:
> > a) In order to ingratiate myself with all parties, I'll do both.
> >
> > b) Can any of you hardware experts recommend a modem that will
> download
> > chocolate oranges?
> >
> > On Sun, 2008-01-20 at 23:01 +, Kris Douglas wrote:
> >   
> >> I frickin' love chocolate oranges!
> >>
> >> Additionally. OMG FLAME WAR!!! TOP POST WAR!
> >>
> >> (Enter: all people that believe in the bottom posting religion)
> >> 
> >
> > a) In order to ingratiate myself with all parties, I'll do both.
> >
> > b) Can any of you hardware experts recommend a modem that will
> download
> > chocolate oranges?
> >
> > Dianne
> >
> >   
> You can't simply download Chocolate Oranges, you need to use something
> 
> like Bit
> Torrent.  That way you can obtain individual segments which you can
> then 
> rebuild
> into a complete luscious, scrummy whole.
> 

Alternatively, you could use something more specialised, like Jigdo, to always 
have the latest (and best) mix of the Chocolate Orange to hand. 

(See [0] to learn what jigdo is)


Kirrus



[0]http://atterer.net/jigdo/debian-jigdo-mini-howto/x95.html#WHATISJIGDO

-- 
Blog: http://www.kirrus.co.uk
UK Plone Hosting: http://www.plone-hosting.co.uk

RPGs:
Captain Senaris Vlenn, CO, USS Sarek
Lt Aieron Peters, XO DS5


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
This command in terminal i take it?
Also do i need to specify the path of the files? or just file1.vob file2.vob
?

On 21/01/2008, Chris Smith <[EMAIL PROTECTED]> wrote:
>
> Javad Ayaz wrote:
> > ok im going to be a pain ! sorry! :)
> >
> > I edited the file. now i want to join 2 vob files but i cant see any way
> of
> > doing it.
> > I looked at the tutorial but couldnt see anything!!
> >
> > Any help please?
>
> VOB files are just MPEG streams so you *should* be able to just do:
>
>   cat file1.vob file2.vob > joined.vob
>
> Not tried it myself.
>
> Regards,
>
> Chris
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] By way of introduction

2008-01-21 Thread Gaurav Patel
Sup Mark, welcome to ze list.

Speaking of chocolate orange! Sainsbury's do excellent cookies with them inside!

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Chris Smith
Javad Ayaz wrote:
> ok im going to be a pain ! sorry! :)
> 
> I edited the file. now i want to join 2 vob files but i cant see any way of
> doing it.
> I looked at the tutorial but couldnt see anything!!
> 
> Any help please?

VOB files are just MPEG streams so you *should* be able to just do:

  cat file1.vob file2.vob > joined.vob

Not tried it myself.

Regards,

Chris

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] Chocolate Oranges WAS: By way of introduction

2008-01-21 Thread Andrew Jenkins
Dianne Reuby wrote:
> a) In order to ingratiate myself with all parties, I'll do both.
>
> b) Can any of you hardware experts recommend a modem that will download
> chocolate oranges?
>
> On Sun, 2008-01-20 at 23:01 +, Kris Douglas wrote:
>   
>> I frickin' love chocolate oranges!
>>
>> Additionally. OMG FLAME WAR!!! TOP POST WAR!
>>
>> (Enter: all people that believe in the bottom posting religion)
>> 
>
> a) In order to ingratiate myself with all parties, I'll do both.
>
> b) Can any of you hardware experts recommend a modem that will download
> chocolate oranges?
>
> Dianne
>
>   
You can't simply download Chocolate Oranges, you need to use something 
like Bit
Torrent.  That way you can obtain individual segments which you can then 
rebuild
into a complete luscious, scrummy whole.

Andy.

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
that is so full of text i can barely make sense of it!
:((

On 21/01/2008, Matthew Macdonald-Wallace <[EMAIL PROTECTED]>
wrote:
>
>
> On Mon, 2008-01-21 at 17:35 +, Javad Ayaz wrote:
> > ok im going to be a pain ! sorry! :)
> >
> > I edited the file. now i want to join 2 vob files but i cant see any
> > way of doing it.
> > I looked at the tutorial but couldnt see anything!!
>
> mencoder may be your best bet for this - it's in apt, so download it and
> check out the man pages (type "man mencoder" at the command prompt)
>
> M.
> --
> Matthew Macdonald-Wallace
> [EMAIL PROTECTED]
>
> Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
> attachments.  If you wish to convert legacy Microsoft documents to these
> formats, please use Open Office (http://www.openoffice.org/)
>
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Matthew Macdonald-Wallace

On Mon, 2008-01-21 at 17:35 +, Javad Ayaz wrote:
> ok im going to be a pain ! sorry! :)
> 
> I edited the file. now i want to join 2 vob files but i cant see any
> way of doing it. 
> I looked at the tutorial but couldnt see anything!!

mencoder may be your best bet for this - it's in apt, so download it and
check out the man pages (type "man mencoder" at the command prompt)

M.
-- 
Matthew Macdonald-Wallace
[EMAIL PROTECTED]

Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
attachments.  If you wish to convert legacy Microsoft documents to these
formats, please use Open Office (http://www.openoffice.org/)


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
ok im going to be a pain ! sorry! :)

I edited the file. now i want to join 2 vob files but i cant see any way of
doing it.
I looked at the tutorial but couldnt see anything!!

Any help please?

Regards

Javad

On 21/01/2008, Dan Attwood <[EMAIL PROTECTED]> wrote:
>
> If you want quick and easy video editing, with a familar time feel and
> some simple effects try kdenlive. it's very simililar in it approach to
> windows movie maker/ adobe premier. It's also got some good out put options
> as well.
>
> and I would stay well away from cinelerra as that way madness lies!
>
> Dan
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Dan Attwood
If you want quick and easy video editing, with a familar time feel and some
simple effects try kdenlive. it's very simililar in it approach to windows
movie maker/ adobe premier. It's also got some good out put options as well.

and I would stay well away from cinelerra as that way madness lies!

Dan
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Alan Pope
On Mon, Jan 21, 2008 at 02:18:48PM +, Javad Ayaz wrote:
> regarding cinelerra, avidemux can anyone tell me if these are in the
> reposotories?
> 

http://packages.ubuntu.com/ will tell you the answer to that one.

> Also which is the best program out of kino,cinelerra, avidemux for special
> effects?
> 

Never done any special effects so I don't know, sorry.

Cheers,
Al.

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
regarding cinelerra, avidemux can anyone tell me if these are in the
reposotories?

Sorry im not at my pc at the mo.!!

Also which is the best program out of kino,cinelerra, avidemux for special
effects?

Regards

Javad


On 21/01/2008, Javad Ayaz <[EMAIL PROTECTED]> wrote:
>
> well thank you ill google it! :)
>
> thank you for your help!
>
>
>  On 21/01/2008, Matthew Macdonald-Wallace <[EMAIL PROTECTED]>
> wrote:
> >
> > On Mon, 2008-01-21 at 09:29 +, Javad Ayaz wrote:
> > > indeed you are right. i didnt search and looked for the easy way out!
> > > i hang my head in shame!!!
> >
> > We're all guilty of it, I just thought I'd nudge you in the right
> > direction! :o)
> >
> > M.
> > --
> > Matthew Macdonald-Wallace
> > [EMAIL PROTECTED]
> >
> > Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
> > attachments.  If you wish to convert legacy Microsoft documents to these
> > formats, please use Open Office ( http://www.openoffice.org/)
> >
> >
> > --
> > ubuntu-uk@lists.ubuntu.com
> > https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> > https://wiki.kubuntu.org/UKTeam/
> >
>
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] Chocolate Oranges WAS: By way of introduction

2008-01-21 Thread webbox . uk
On 21/01/2008, Matthew Macdonald-Wallace <[EMAIL PROTECTED]> wrote:
>
> On Mon, 2008-01-21 at 00:26 +, Mark Burns wrote:
> > On a side note, it might just be me, but I dont think Chocolate Oranges
> > will mix to well with a Flame War.
> >
> > So I would like to suggest a brief ceasefire, so that all innocent
> > Chocolate Oranges may be moved a safe distance away from the arena.
>
> You're going to fit in well around here, I can tell... :oP

i agree. :D

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
well thank you ill google it! :)

thank you for your help!


On 21/01/2008, Matthew Macdonald-Wallace <[EMAIL PROTECTED]>
wrote:
>
> On Mon, 2008-01-21 at 09:29 +, Javad Ayaz wrote:
> > indeed you are right. i didnt search and looked for the easy way out!
> > i hang my head in shame!!!
>
> We're all guilty of it, I just thought I'd nudge you in the right
> direction! :o)
>
> M.
> --
> Matthew Macdonald-Wallace
> [EMAIL PROTECTED]
>
> Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
> attachments.  If you wish to convert legacy Microsoft documents to these
> formats, please use Open Office (http://www.openoffice.org/)
>
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Matthew Macdonald-Wallace
On Mon, 2008-01-21 at 09:29 +, Javad Ayaz wrote:
> indeed you are right. i didnt search and looked for the easy way out! 
> i hang my head in shame!!! 

We're all guilty of it, I just thought I'd nudge you in the right direction! :o)

M.
-- 
Matthew Macdonald-Wallace
[EMAIL PROTECTED]

Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
attachments.  If you wish to convert legacy Microsoft documents to these
formats, please use Open Office (http://www.openoffice.org/)


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
indeed you are right. i didnt search and looked for the easy way out!
i hang my head in shame!!!


On 21/01/2008, Matthew Macdonald-Wallace <[EMAIL PROTECTED]>
wrote:
>
>
> On Mon, 2008-01-21 at 09:07 +, Javad Ayaz wrote:
> > ok well thats a relief!
> >
> > are there any tutorials on how to use Kino?
> > all i want to do is take out like 10 secs of footage from two places
> > in a file?
> >
> > hope this makes sense!
>
> Javad,
>
> It pains me to do this, however:
>
> http://www.google.co.uk/search?q=kino
> +tutorials&ie=utf-8&oe=utf-8&aq=t&rls=
> com.ubuntu:en-US:official&client=firefox-a
>
> There are a huge number of Kino tutorials out there, and I humbly
> suggest that if you search for the Kino internet site, it will probably
> have instructions to achieve what you want to do.
>
> Please understand that although I am keen to help where possible, the
> dreaded phrase "Google is your friend" does stem from posts similar to
> this one where the information is out there, it just hasn't been
> searched for.
>
> Kind regards,
>
> Matt
>
> --
> Matthew Macdonald-Wallace
> [EMAIL PROTECTED]
>
> Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
> attachments.  If you wish to convert legacy Microsoft documents to these
> formats, please use Open Office (http://www.openoffice.org/)
>
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Matthew Macdonald-Wallace

On Mon, 2008-01-21 at 09:07 +, Javad Ayaz wrote:
> ok well thats a relief!
>  
> are there any tutorials on how to use Kino? 
> all i want to do is take out like 10 secs of footage from two places
> in a file?
>  
> hope this makes sense!

Javad,

It pains me to do this, however:

http://www.google.co.uk/search?q=kino
+tutorials&ie=utf-8&oe=utf-8&aq=t&rls=com.ubuntu:en-US:official&client=firefox-a

There are a huge number of Kino tutorials out there, and I humbly
suggest that if you search for the Kino internet site, it will probably
have instructions to achieve what you want to do.

Please understand that although I am keen to help where possible, the
dreaded phrase "Google is your friend" does stem from posts similar to
this one where the information is out there, it just hasn't been
searched for.

Kind regards,

Matt

-- 
Matthew Macdonald-Wallace
[EMAIL PROTECTED]

Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
attachments.  If you wish to convert legacy Microsoft documents to these
formats, please use Open Office (http://www.openoffice.org/)


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
ok well thats a relief!

are there any tutorials on how to use Kino?
all i want to do is take out like 10 secs of footage from two places in a
file?

hope this makes sense!

Regards

Javad


On 21/01/2008, Matthew Macdonald-Wallace <[EMAIL PROTECTED]>
wrote:
>
> On Mon, 2008-01-21 at 08:17 +, Javad Ayaz wrote:
> > ok i tried kino but heres the problem...it dramatically increases the
> > file size. The original vob file size is 980 mb and once i drag and
> > drop it into kino...without even touching it the file size becomes 3.2
> > gb!!!
>
> Javad,
>
> The size increase is because Kino converts everything into DV format so
> you can edit it first.
>
> Once you have edited it and exported it, the size will decrease rapidly.
>
> Kind regards,
>
> Matt
>
> --
> Matthew Macdonald-Wallace
> [EMAIL PROTECTED]
>
> Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
> attachments.  If you wish to convert legacy Microsoft documents to these
> formats, please use Open Office (http://www.openoffice.org/)
>
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] Chocolate Oranges WAS: By way of introduction

2008-01-21 Thread Dianne Reuby
a) In order to ingratiate myself with all parties, I'll do both.

b) Can any of you hardware experts recommend a modem that will download
chocolate oranges?

On Sun, 2008-01-20 at 23:01 +, Kris Douglas wrote:
> I frickin' love chocolate oranges!
> 
> Additionally. OMG FLAME WAR!!! TOP POST WAR!
> 
> (Enter: all people that believe in the bottom posting religion)

a) In order to ingratiate myself with all parties, I'll do both.

b) Can any of you hardware experts recommend a modem that will download
chocolate oranges?

Dianne


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] Chocolate Oranges WAS: By way of introduction

2008-01-21 Thread Matthew Macdonald-Wallace

On Mon, 2008-01-21 at 00:26 +, Mark Burns wrote:
> On a side note, it might just be me, but I dont think Chocolate Oranges
> will mix to well with a Flame War.
> 
> So I would like to suggest a brief ceasefire, so that all innocent
> Chocolate Oranges may be moved a safe distance away from the arena.

You're going to fit in well around here, I can tell... :oP

M.
-- 
Matthew Macdonald-Wallace
[EMAIL PROTECTED]

Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
attachments.  If you wish to convert legacy Microsoft documents to these
formats, please use Open Office (http://www.openoffice.org/)


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Matthew Macdonald-Wallace
On Mon, 2008-01-21 at 08:17 +, Javad Ayaz wrote:
> ok i tried kino but heres the problem...it dramatically increases the
> file size. The original vob file size is 980 mb and once i drag and
> drop it into kino...without even touching it the file size becomes 3.2
> gb!!! 

Javad,

The size increase is because Kino converts everything into DV format so
you can edit it first.

Once you have edited it and exported it, the size will decrease rapidly.

Kind regards,

Matt

-- 
Matthew Macdonald-Wallace
[EMAIL PROTECTED]

Please use ISO Approved file formats (.odt/.ods/.odp/.odg/.pdf) for
attachments.  If you wish to convert legacy Microsoft documents to these
formats, please use Open Office (http://www.openoffice.org/)


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] video editing

2008-01-21 Thread Javad Ayaz
ok i tried kino but heres the problem...it dramatically increases the file
size. The original vob file size is 980 mb and once i drag and drop it into
kino...without even touching it the file size becomes 3.2 gb!!!




On 21/01/2008, Adam Bagnall <[EMAIL PROTECTED]> wrote:
>
> Kris Douglas wrote:
> >
> >
> > On 20/01/2008, *Javad Ayaz* <[EMAIL PROTECTED]
> > > wrote:
> >
> > i only want something basic...wana cut out a few mins out of a vob
> > file. thats it!
> >
> >
> > May I advise you to look up the term top posting, and why its not
> > recommended on lists, before someone, unlikely to be me, but someone
> > wearing a slackware shirt kills you slowly with a USB Hacksaw (watch
> > Hak.5 if you dont know what that is).
> >
> > Anyway, the best way to find the best editor is to try them, I would
> > give kino a try seen as it is a good replica of Winshite movie maker.
> >
> >
> >
> >
> > --
> > Kris Douglas
> >   Softdel Limited Hosting Services
> >
> >   Web: www.softdel.net 
> >   Mail: [EMAIL PROTECTED] 
> Another app that nobody has mentioned yet is kdenlive It's in the repos
> although I havent tried it out yet.
>
> --
> ubuntu-uk@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
> https://wiki.kubuntu.org/UKTeam/
>
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/