Ubuntu Multimedia :: Software For Splitting And Joining Mp3 Files?

Jan 23, 2011

What is the best software for splitting and joining mp3 files?

View 7 Replies


ADVERTISEMENT

Software :: Splitting And Joining In Both Windows?

Jan 20, 2011

I have a file of size 6GB. I would like to find an utility which will split and join in both windows and in Linux. I know Linux has native split and cat for this purpose. My idea is, if I give this split files to anyone, they should be able to join them either in Windows or Linux. Is there any utility to do this job?

View 7 Replies View Related

Software :: Transfer File From One Server To Other By Splitting Then Joining

Apr 8, 2010

I'm trying to transfer a large .tgz file from a CentOS dedicated server to a linux webhost (unknown OS). The problem is the webhost will not allow a 1.1gb file to be uploaded, however it will allow the upload in 149MB chunks. I used the split command to segment my tgz into 7 segments under 150mb. I then uploaded all segments via FTP which worked. Then I tried to join the segments to create the original tgz. The join appears to work with no issues. However, when I try to extract the tgz it appears there is a problem, most, but not all files are extracted and there is this error message:

Code: gzip: stdin: Input/output error
tar: Unexpected EOF in archive
tar: Unexpected EOF in archive
tar: Error is not recoverable: exiting now It appears the join did not work and the tgz is slightly corrupt. What am I doing wrong? Here's the commands I'm using:

1. Create the original tgz on the dedicated server
Code: tar -czf mysite.tgz ./myfolder
2. Split the tgz into segments
Code: split -b 149m -d mysite.tgz seg

# using the -d switch so the segment files use a numerical suffix
# I now have these files:
seg00
seg01
seg02
seg03
seg04
seg05
seg06
seg07

3. Transfer segments to the other webhost using FTP
Code: # hand typing (not a script)
ftp ftp.mysite.com
myusername
mypassword
binary
cd somefolder
put seg00
put seg01
put seg02
# through to seg07

4. Join up the segments on the new webhost
Code: # this is in a .sh script file
cd /full/path/to/somefolder
cat seg* > mysite.tgz 5. Extract the new tgz
Code: # this is in a .sh script file
cd /full/path/to/somefolder
tar -xzf mysite.tgz
# the above error is now thrown.

That's it. What am I doing wrong that's causing the above error?

View 5 Replies View Related

Ubuntu Multimedia :: Joining .rmvb Files Together?

Aug 30, 2010

I need a piece of software that could join .rmvb files together as one file , i have tried Avidemux and Lives , but none of them worked

View 5 Replies View Related

OpenSUSE Multimedia :: Joining A Series Of Vidio/audio Files?

Oct 30, 2010

I am trying to join about 3 video file and have an audio track over the top. Nothing major and to give you an idea how basic it needs to be, I used windows movie maker in the past. I can't figure out how to do it! I had a flick through the web and some people recommended Avidmux. I installed it and i can edit one video file with no audio but if i try to incorporate a second file it just opens a new window! Has anyone got any ideas on good video editing software.

View 3 Replies View Related

General :: Splitting And Merging Two Files?

May 29, 2010

how to split two files like

big.zip.1
big.zip.2

then, my second is how to merge them like windows

in windows, i can use copy /b

in linux,

cat big.zip.1 > big.zip
cat big.zip.2 >> big.zip

View 1 Replies View Related

Ubuntu :: Joining A Bunch Of Avi Files That Are In A Set Sequence

Jul 27, 2011

How to join about 8 avi files the filenames are in the format "blah.avi.001", blah.avi.002, blah.avi,003 blah.avi.004 etc. I want them joined so there is just one avi file. How can I do this?

View 9 Replies View Related

Slackware :: Gs Segfault When Joining Pdf Files?

Dec 28, 2010

I usually use the following command to join several PDF files in one :gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=output.pdf input1.pdf input2.pdfHadn't have to do it for a while but today, I needed it and thus fired my script.lam! gs segfaults.A quick internet search and I found this :https://bugs.archlinux.org/task/22006Though Arch related, while I'm running slackware64-current, the behaviour was exactly the same as mine.In the above thread, one guy linked to a bug report which seems to be theculprit :http://bugs.ghostscript.com/show_bug.cgi?id=691831gcc 4.5.1, gs 9.00, x86_64, indeed, slackware64 seems to be exactly in that situation.

View 2 Replies View Related

Ubuntu :: Joining Relevant MP3 Files Based On Paths?

Oct 24, 2010

I have a bunch of MP3 files and I have their paths grouped in a text file. Is it possible to join the relevant MP3 files based on the paths in the text file losslessly?

View 2 Replies View Related

General :: Joining Two Files From The Command Line?

Oct 21, 2010

I'm looking for a solution for the following simple problem. I have two files, fileA and fileB. Each file contains only one word per line, and they contain exactly the same number of lines. I would like to create a new file called fileAB, where the i-th line contains the i-th line of fileA, a Tab separator character, and then the i-th line of fileB. I know how to do it in Python or other scripting languages, but it would be nice to have a bash one-liner for that. Is it possible to do this in bash or any other Unix shell, using the tools that are usually available on the command line (e.g., sed, awk and such)?

View 1 Replies View Related

General :: How To Open Multiple Files With Splitting Window In EMacs

Apr 21, 2010

What's the command to open multiple files in Emacs vertically/horizontally splitting window.

View 4 Replies View Related

General :: Splitting Text Files Into Parts With 2000 Lines

Sep 7, 2010

I am facing a problem while splitting a text file, I need to split a file into some parts and each split file should have 2000 lines, when I do it through "split" command the mother file is kept intact but as per my requirement I need to cut mother file into some parts thus it should not be kept intact.

Example:
file size
motherfile.txt 5000 lines.
after split
motherfile.txt 2000 lines.
childfile1.txt 2000 lines.
childfile2.txt 1000 lines.

View 7 Replies View Related

Ubuntu Multimedia :: Splitting Videos And Maintaining Quality?

Feb 24, 2010

I am trying to use ffmpeg to split a number of videos of different types (WMV, MPG, AVI). I do not want to change anything else, just split them into smaller chunks. The video is split, but the quality of the output file is terrible. I would describe it as "blocky" (I think the correct term is "pixelated"). When I make the player (KMPlayer) much smaller the problem naturally goes away.

The command I am using:

ffmpeg -i original_vid.wmv -ss 00:00:00 -t 00:05:00 first_vid.wmv

The output:

FFmpeg version SVN-r19352-4:0.5+svn20090706-2ubuntu2, Copyright (c) 2000-2009 Fabrice Bellard, et al.
configuration: --extra-version=4:0.5+svn20090706-2ubuntu2 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enable-bzlib --enable-libgsm --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis

[Code]....

"Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 25.00 (25/1)

Seems to mean something, but I couldn't find anything saying that this is the problem or what O should do to correct it.

View 2 Replies View Related

General :: Joining An Ubuntu VM To Microsoft AD And DNS

Oct 27, 2010

So here's what I'm after:

Create Ubuntu inside Virtualbox (done) Join it to the domain using net ads join -S example.com -u admin (done) Update the DNS using net ads dns register (done) Be able to visit the netbios name as defined in smb.conf (lets call it Bob). [Not done]

The problem I am having is that it looks like, even though the machine is now on the AD, and I can browse users in the AD, etc... My network configuration (IP/route tables, etc) are not correct.

For example, my AD server is in the 172 IP range, while BOB is sitting at 10.0.2.15.

The DNS server stores Bob's value as 10.0.2.15, so when I ping it from my workstation at 172, I end up getting no response (obviously it's on a different net).

Bob's route table is configured to deal with 10... range of IP, rather than 172.

I have attempted doing commands such as ifconfig eht0 172.16.1.118 netmask 255.255.255.0 and even editing the route tables, but that then makes outbound network traffic imposable.

View 1 Replies View Related

Server :: Splitting A Mirror With LVM?

Feb 22, 2010

I'm running Red Hat Enterprise Linux ES release 4 (Nahant Update 6).

I've created a mirror of a Logical Volume with this command:

# lvconvert -m1 --corelog /dev/datavg/data /dev/dm-16

Now I've this:

# lvs -a -o name,copy_percent,devices
LV Copy% Devices
data 100.00 data_mimage_0(0),data_mimage_1(0)
[data_mimage_0] /dev/dm-11(0)

[Code].....

My goal was to remove devices dm-10, dm-11 and dm-14 from my VG, so I decided to extend the VG with dm-16 and mirror my data LV to that device, then split that mirror from the other devices. The FS is mounted and need to stay online...

View 1 Replies View Related

Ubuntu Networking :: Joining Windows Domain?

Apr 22, 2010

I want to join a Windows domain with my ubuntu (for project of evening school)I'm following this guide http://ict-freak.nl/2008/10/26/how-t...indows-domain/ but when I put in the command I get this error

project@ubuntu:~$ sudo domainjoin-cli join project2010.be Administrator

Code:
Error: Unable to resolve DC name [code 0x00080026]Resolving 'project2010.be' failed. Check that the domain name is correctly entered. Also check that your DNS server is reachable, and that your system.is configured to use DNS in nsswitch.Probably need to Change the nsswitch file.it looks like this atm

Code:
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.[code].....

View 5 Replies View Related

Server :: Splitting LVM Partition And Then Mounting?

Apr 7, 2010

I need to split a logical volume ( only have /boot and lvm partitions on drive)

This new logical volume needs to take up most of the existing space.

I'm just wondering about the sequence of steps to take before I do this.

How do I resize the new/old LVM partitions - and would I need to re-size the underlying fs?

View 4 Replies View Related

Programming :: Splitting Results In More Web Pages?

Apr 1, 2010

I've a web page where I can search information in my database.Sometimes results of search operation are more of fifty.How can I split results in different web page as it happens for example in any search engine or operation

View 7 Replies View Related

Networking :: Joining Two Networks?

Apr 9, 2009

I don't have any background in networking. Could someone tell me what are the possible options and the best solution to join two networks together?Let's say network A has the IP address of 192.168.1.0/24 and network B has the IP address of 10.0.0.0/24. Should each end of the network has a gateway server? Or should I just setup one enough? Or do we have alternate options?

View 1 Replies View Related

Programming :: Joining Command In Csh?

Feb 3, 2009

I did a search for this but did not see anything relevant.I'm trying to join several strings and execute them as a command but csh does not seem to recognize it as a command, anyone know what I'm doing wrong? numone and numtwo will be passed into the script. (I have to use csh because it is a part of an existing script.)

Code:
#!/bin/csh
set file1=file.dat

[code]...

View 5 Replies View Related

Ubuntu :: Splitting Home Directory To Make Config Folders

Jul 24, 2011

I'm new to ubuntu (installed 3 days ago). I have two disks in my notebook - one hdd (big, 320GB) and one ssd (very fast, 120GB). Everything is on ssd now, but I want to know how can I split my home directory to make config folders (like .thunderbird, .mozilla, .purple) to use ssd (for very fast response), and put movies, pictures, downloads and other folders to use hdd (a lot of space). Simply mounting hdd as /home is not a good option, becouse config files would be on hdd also. Should I mount (or link) all folders like /home/username/Videos to hdd, or is there a better solution?

View 6 Replies View Related

Ubuntu :: Samba Configured For Joining Domains - How To Login

Nov 1, 2010

I have successfully deploy/configured the Ubuntu PDC and connected Windows XP too. Its all working fine.. but now I wana to connnect Ubuntu Desktop to same Ubuntu PDC. I have changes in SAMBA, as per required for joining Domain and execute the <net join MyDomain -u root> to its all fine. No error. But How to Login? On startup there is nothing like option for selecting Domain or Workgroup..

View 9 Replies View Related

Networking :: Splitting The Traffic On Multiple Interfaces?

Jul 6, 2010

I have the following setup: Client A, having 2 network interfaces, eth0 and eth1, both with the IP address 192.168.1.1/32. Client B, also having 2 network interfaces, eth0 and eth1, with the IP addresses 192.168.1.2. The routing table on client A has one entry: 192.168.1.2 dev eth0 The routing table on client B has one entry: 192.168.1.2 dev eth1. Basically the idea is to send the upload traffic one one interface and the download traffic on the other interface. (Client B could serve as a gateway). However, with this setup, well... nothing works. The packets received by Client B are ignored. Does the linux kernel have anything against routing packets coming from an interface, although he thinks the source is on another interface?

View 4 Replies View Related

Programming :: Bash String Splitting Into Array?

Oct 14, 2010

I am using gnu bash 3.2I need to split the string into array like

a=this_is_whole_world.file # split [_.]
I need to split this on _ and . some thing like this
a[0]=this
a[1]=is
a[2]=whole
a[3]=world
a[4]=file

preferable using bash regex. if not sed is also ok.

View 2 Replies View Related

General :: Splitting 15000 Images In Sub Folders?

Dec 26, 2010

I have a folder with 15000+ images! How to (using bash) mv the files to sub-folders a/ b/ c/ d/ e/ f/ g/ h/ i/ j/?

View 6 Replies View Related

Programming :: Splitting Text File Into Each Duplicate

Dec 10, 2010

I have a text file that is filled with references to duplicate files. I'm trying to create a text file for each duplicate file found that contains the paths to the duplicates. I would also like the text file names to be based on the size and file name.

Some thing like:
231.5 KB - P&S.doc.txt
138.5 KB - LIMITED#C71.doc.txt

Code:
NamePathSizeLast ChangeLast AccessFile TypeOwnerAttributes
P&S.doc(3 Files)
P&S.docZ:Leg\_Pri_LegPurP&SBUYBarry V231.5 KB11/2/2001 4:07 PM11/22/2010 2:38 AM.doc (Microsoft Office Word 97 - 2003 Document)Lou_AC
P&S.docZ:Leg\_Pri_LegP&SBUYBarry V231.5 KB11/2/2001 4:07 PM11/22/2010 2:38 AM.doc (Microsoft Office Word 97 - 2003 Document)DMsC
P&S.docZ:Leg\_Pri_LegPropsPurP&SBUYBarry V231.5 KB11/2/2001 4:07 PM11/22/2010 2:38 AM.doc (Microsoft Office Word 97 - 2003 Document)DMsC
LIMITED#C71.doc(2 Files)
LIMITED#C71.docZ:Leg\_Pri_LegPurCV138.5 KB12/15/2003 1:04 PM11/22/2010 2:38 AM.doc (Microsoft Office Word 97 - 2003 Document)Lou_AC
LIMITED#C71.docZ:Leg\_Pri_LegPropsPurCV138.5 KB12/15/2003 1:04 PM11/22/2010 2:38 AM.doc (Microsoft Office Word 97 - 2003 Document)DMsC
ps revised.8.30.05.clean.doc(3 Files)
ps revised.8.30.05.clean.docZ:Leg\_Pri_LegPropsPurP&SSellVPSummit54.5 KB8/31/2005 11:46 AM11/22/2010 2:38 AM.doc (Microsoft Office Word 97 - 2003 Document)DMsC
ps revised.8.30.05.clean.docZ:Leg\_Pri_LegP&SSellVPSummit54.5 KB8/31/2005 11:46 AM11/22/2010 2:38 AM.doc (Microsoft Office Word 97 - 2003 Document)DMsC
ps revised.8.30.05.clean.docZ:Leg\_Pri_LegPurP&SSellVPSummit54.5 KB8/31/2005 11:46 AM11/22/2010 2:38 AM.doc (Microsoft Office Word 97 - 2003 Document)Lou_AC
Copy of 08 Lee All July Billing.xls(2 Files)
Copy of 08 Lee All July Billing.xlsZ:IS\_Sh_ISDevDocDocl 26 upgradeAS6 backup codeAPImport131.5 KB7/30/2010 12:11 PM11/22/2010 2:38 AM.xls (Microsoft Office Excel 97-2003 Worksheet)AdministratorsC
Copy of 08 Lee All July Billing.xlsZ:APKellie131.5 KB7/30/2010 10:03 AM11/22/2010 2:38 AM.xls (Microsoft Office Excel 97-2003 Worksheet)KellieC

View 5 Replies View Related

Software :: Joining Multicast IP Group?

Dec 14, 2009

How can i make my device join a multicast IP group.My target device is in linux

View 2 Replies View Related

Ubuntu :: Joining The Project Using SPHINX2 For Basic Voice Commands With USB Mic?

Jun 12, 2011

How to compare two wav files [URL] or to be capable to reco simple voice commands? Openbox, fluxbox... can be ran using perlbox voice reco for basic commands. [URL] everything is frequence based:[URL] However we would like to make the use of the ALSA and processing after recording. OK.

Code:

apt-get install -f sphinx2
here is my script:
Code:
#!/bin/sh
# my alsa-1 is my usb mic
arecord -Dplughw:1,0 -f cd -vv voicecommand.wav

[code]....

THe next step is to analysis the wav file just created. The advantage is that sphinx2 works for basic commands + it uses only up to 3% of your CPU resources !

View 3 Replies View Related

General :: Archiver Supports Splitting Archive Into Pieces?

Apr 27, 2010

I need files to be <= 5GB to put on S3. Right now I have an ugly tar / gzip / cut before upload, then cat / zcat / tar on download, but it's really ugly - and nearly every archiver should support archive splitting right? What's the best way?

View 2 Replies View Related

General :: Printf White Space - Words Splitting?

Jun 15, 2010

I am having trouble keeping the name together and the phone number together, I think due to the white space. I have tried "" and '' it doesn't seem to matter. So it may be my syntax? and does it matter how long the first and last names are.

me$ echo 'fstname lstname' '123 123-1234' | ./myscript
#myscript
read a b
printf "%-15s %20s
" $a $b >> my_phone_numbers
OUTPUT

fstnamelstname
123123-1234
insted of
fstname lstname
123 123-1234

I know its not an elegant script but I am still learning how some commands work.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved