Linux Debian support - software file joiner

This is Interesting: Free IT Magazines  
Home > Archive > Linux Debian support > February 2007 > software file joiner





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author software file joiner
Chuck Dubois

2007-02-09, 7:13 pm

What's a good app to join separate video files into one big file?



mick

2007-02-09, 7:13 pm

On Fri, 09 Feb 2007 14:01:01 -0600, Chuck Dubois wrote:

> What's a good app to join separate video files into one big file?


example:
cat file001.avi file002.avi file003.avi > file.avi

It won't join files produced separately, but is ok if an original file was
split into sections by something like hjsplit.

--
Mick (Working in a M$-free zone!)
Remove blockage to use my email address
Web: http://www.nascom.info & http://mixpix.batcave.net
CBFalconer

2007-02-09, 7:13 pm

Chuck Dubois wrote:
>
> What's a good app to join separate video files into one big file?


cat should do it.

cat f1 f2 .... > bigfile

--
<http://www.cs.auckland.ac.nz/~pgut0.../vista_cost.txt>
<http://www.securityfocus.com/columnists/423>

"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews


Chuck Dubois

2007-02-09, 7:13 pm

On Fri, 09 Feb 2007 16:56:20 -0500, CBFalconer wrote:


>
> cat should do it.
>
> cat f1 f2 .... > bigfile




It blows up on wmv files.

SINNER

2007-02-09, 7:13 pm

* Chuck Dubois wrote in alt.os.linux.debian:
> On Fri, 09 Feb 2007 16:56:20 -0500, CBFalconer wrote:


[vbcol=seagreen]
[vbcol=seagreen]
> It blows up on wmv files.


Most movie file formats cannot be simply concatenated so not even a
windows joiner would help you.

--
David
In Christianity, a man may have only one wife. This is called Monotony.
CBFalconer

2007-02-10, 1:14 am

Chuck Dubois wrote:
> On Fri, 09 Feb 2007 16:56:20 -0500, CBFalconer wrote:
>
>
> It blows up on wmv files.


No reason for that, unless the output file is too big for your
system. What error does cat give you?

--
<http://www.cs.auckland.ac.nz/~pgut0.../vista_cost.txt>
<http://www.securityfocus.com/columnists/423>

"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews

Chuck Dubois

2007-02-10, 7:13 am

On Fri, 09 Feb 2007 21:08:54 -0500, CBFalconer wrote:

>
> No reason for that, unless the output file is too big for your
> system. What error does cat give you?




It throws garbage characters on the screen, beeps the system speaker and
the display starts scrolling.
CBFalconer

2007-02-10, 1:12 pm

Chuck Dubois wrote:
> On Fri, 09 Feb 2007 21:08:54 -0500, CBFalconer wrote:
>
>
> It throws garbage characters on the screen, beeps the system
> speaker and the display starts scrolling.


Sounds like you omitted the "> bigfile" in the command above.

--
<http://www.cs.auckland.ac.nz/~pgut0.../vista_cost.txt>
<http://www.securityfocus.com/columnists/423>

"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews


Chuck Dubois

2007-02-10, 1:12 pm

On Sat, 10 Feb 2007 07:09:55 -0600, Chuck Dubois wrote:


>
> It throws garbage characters on the screen, beeps the system speaker and
> the display starts scrolling.




Cat worked perfectly for mpgs.

I wish I knew more about video and file formats. If the re-learning curve
was not so steep, I'd do some programming to create a GUI driven
splitter/joiner.....

Say..... many years ago, I saw a Visual Basic clone for linux. Anyone
know if that IDE is still available?







krusaf

2007-02-11, 7:13 am

Chuck Dubois wrote:

> What's a good app to join separate video files into one big file?


mencode maybe ?
mick

2007-02-11, 1:13 pm

On Sat, 10 Feb 2007 09:47:47 -0500, CBFalconer wrote:

> Chuck Dubois wrote:
>
> Sounds like you omitted the "> bigfile" in the command above.
>


I'll second that. I can cat wmv files no problem. Whether the resulting
file is worth watching is something else though... <grin>

Something to watch out for is that sometimes the input filenames have
spaces in them, in which case you have to put quotes around each file to
be "cat"ed or rename them all to get rid of the spaces. (cat sees a space
as the delimiter for each input filename)

--
Mick (Working in a M$-free zone!)
Remove blockage to use my email address
Web: http://www.nascom.info & http://mixpix.batcave.net
Florian Diesch

2007-02-11, 7:13 pm

CBFalconer <cbfalconer@yahoo.com> wrote:

> Chuck Dubois wrote:
>
> No reason for that, unless the output file is too big for your
> system. What error does cat give you?


cut works fine but you'll get errors when playing the video file afterwards.


Florian
--
<http://www.florian-diesch.de/>
Florian Diesch

2007-02-11, 7:13 pm

Chuck Dubois <C_Dubois@digitalcity.net> wrote:

> What's a good app to join separate video files into one big file?


mencoder, ffmepeg or transcode should do the job


Florian
--
<http://www.florian-diesch.de/>
Topaz_Crow

2007-02-14, 1:14 am

On Sat, 10 Feb 2007 07:09:55 -0600, Chuck Dubois <C_Dubois@digitalcity.net> wrote:
> On Fri, 09 Feb 2007 21:08:54 -0500, CBFalconer wrote:
>
>
>
>
> It throws garbage characters on the screen, beeps the system speaker and
> the display starts scrolling.


I have come into this thread late and not sure if this has been
suggested but...

How about lxsplit?

lxsplit is in Debian.

--
Topaz Crow
No replies by email, sorry.
Reply to alt.anonymous.messages Subject: ATTN: Topaz Crow


Sybren Stuvel

2007-02-14, 7:13 am

["Followup-To:" header set to alt.os.linux.ubuntu.]
Chuck Dubois enlightened us with:
>
> It throws garbage characters on the screen, beeps the system speaker
> and the display starts scrolling.


Then you must have missed the '>' symbol. You really need that to
redirect the output from your screen to the file.

Sybren
--
Sybren Stüvel
Stüvel IT - http://www.stuvel.eu/
Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com