Skip to main content

Questions tagged [combine]

The tag has no usage guidance.

Filter by
Sorted by
Tagged with
83 votes
7 answers
108k views

Concatenate multiple WAV files using single command, without extra file

I want to concatenate multiple WAV files into a single WAV file using FFMPEG. I have used the following command and it generates the required file. Command: ffmpeg -f concat -i mylist.txt -c copy ...
Manu's user avatar
  • 1,053
14 votes
3 answers
41k views

How can I combine two files on Windows?

I have created a split file on a Linux system as indicated in this Unix.SE question. However, when I copy that file to a Windows system, I cannot recreate the original file. Using 7-zip gives me an ...
Macha's user avatar
  • 5,322
12 votes
2 answers
30k views

Combine multiple images to form a strip of images ffmpeg

I wish to combine multiple images into a single strip of images, using FFMPEG. I have been trying to search this thing on google, but unable to find anything useful. All links take me to places ...
Manu's user avatar
  • 1,053
11 votes
1 answer
6k views

Combine/concatenate multiple MP4 files, making each file into a chapter

I am looking to use handbrake to combine 43 short mp4 files into one larger file. However, I want to ensure that the start of each file is recognized as a chapter. I'd be using vlc to play the file.
Phil Hobrla's user avatar
8 votes
3 answers
18k views

Set "never combine" in Windows 7 using the registry?

How do i set task bar buttons to "never combine" using the registry?
Simon's user avatar
  • 2,447
8 votes
3 answers
15k views

Using the “Combining Enclosing Circle” character in Word

Is there a way to use the “Combining Enclosing Circle” UNICODE character (U+20DD) together with some other character in Word 2010 to actually form a circled character? There are glyphs for e.g. ...
Ondrej Tucny's user avatar
  • 1,152
8 votes
3 answers
21k views

Can I use two different internet connections for more speed?

I am technically knowledgeable enough to know that this most likely isn't possible, BUT, I am curious just the same (it must be put to rest). Is there anything preventing us from creating a means to ...
Richard's user avatar
  • 287
6 votes
4 answers
8k views

What's the fastest way to combine two or more files in Linux?

I want to combine two or more files in Linux, so I am using the following command: cat small_file LARGE_File LARGER_FILE > SUM_OF_FILES However this runs very slow. Does anyone know a Linux tool ...
macki's user avatar
  • 163
4 votes
2 answers
21k views

Generate Combinations in Excel

I have an input row which contains the cells: 30 30 30 50 50 60 100 I want to generate all possible combinations of length 3 from this set. So I would want rows containing 3 populated cells and the ...
Jonathan Mee's user avatar
4 votes
2 answers
6k views

how to combine asian font and western font as one combined font

Is there anyway to combine asian fonts like chinese, korean or japan fonts with english fonts then export as ttf? I heard that Adobe Framemaker can make this but is there any other way without ...
Qing Hai's user avatar
4 votes
1 answer
68 views

How to combine the output of two querys in MYSQL when they have non-compatible conditions

I'm looking for some assistance in adding together the output of the two following queries. They have two incompatible conditions so I'm struggling to combine them in the one query. Total Revenue ...
NiallBC's user avatar
  • 41
3 votes
4 answers
138k views

Find alike data in two worksheets and put in 3rd worksheet

What is the best/easiest way to combine data from two different Excel spreadsheets into a third Excel spreadsheet? Spreadsheet 1 will have the username only. Spreadsheet 2 would have lots of ...
CSF's user avatar
  • 31
3 votes
3 answers
5k views

combine two Internet connections to download

I have two computers on a LAN. The first computer with a speed of 128Mbs and a second computer with Internet connection speed is 256Mbs. I tried downloading a 250MB file. If the first computer to ...
M R Jafari's user avatar
3 votes
1 answer
8k views

How to combine MKV video and separate audio?

I have MKV video and separate audio in .ac3 format. MKV file has its own embedded audio records, but I don’t need them. I need to unify video from MKV file and my separate audio of .ac3 format. How ...
Erba Aitbayev's user avatar
3 votes
1 answer
2k views

How to combine PDF documents to make a new document using Preview?

Preview lets me combine pages from different documents into one window, but I can't find a way to save the resulting multi-page document. Preview displays Untitled (1 page) (3 documents, 3 total ...
wdkrnls's user avatar
  • 1,454
3 votes
2 answers
2k views

Combining Two CD-ROMs

Is there any way to combine two CDs? I have two game discs that I would like to put on one CD for easier distribution. These games are very very old and are only about 250 megs for their entire ...
bobber205's user avatar
  • 544
3 votes
2 answers
7k views

Make Excel cell save formula results and not the actual formula?

I have C1 that needs to combine C2 and C3. The problem with this is that is that if I'm importing with SQL it doesn't combine C2 and C3, but instead imports nothing or the actual formula. Is there a ...
user avatar
3 votes
3 answers
2k views

Is there a GUI 'cat'-like program for any platform?

What I am looking for is a way to recombine split files without using cat. Is there such a beast? It could run on Linux or Windows or Mac OS.
warren's user avatar
  • 10.2k
3 votes
1 answer
7k views

Outlook 2003: How to group by flag AND sort by date?

I'm trying to get Outlook 2003 to do the following: Group the emails in my Inbox by FLAG and then sort by DATE. This SHOULD be accomplished by the following settings: It seems to work, as I get ...
JJarava's user avatar
  • 433
3 votes
0 answers
4k views

Is it possible to combine two audio sources from my PC into one audio source?

I would like to combine an audio source (like stereo mix) and my microphone into one single audio source which can then be used as a microphone is a program such as Skype. So in essence I would like ...
Jack Pollock's user avatar
2 votes
4 answers
5k views

Double Latin letters in Unicode (ligatures)

What Unicode characters are there where two Latin letters are joined together in a ligature to form a single Unicode character? Similar to this type of character: ㎐ or æ I looked in the Unicode ...
kyle k's user avatar
  • 131
2 votes
2 answers
9k views

how to combine or concatenate two video files with ffmpeg?

I have tried to concatenate 2 video files (avi) into one sigle video: cat input1.avi input2.avi | ffmpeg -f avi -i - -vcodec copy -acodec copy final.avi .. but this does not concatenate the videos. ...
user avatar
2 votes
3 answers
34k views

how to combine contents of 2 txt files in unix..i know the cat command can do this but how?

I need to combine contents of 2 text files, word by word. The script takes every word from file 1 and combines with file 2. it adds all the combined words in file 3. Example: File1 File2 ...
sam's user avatar
  • 21
2 votes
2 answers
22k views

Is it possible to execute a remote command via SCP in the same way as SSH?

I want to embed a remote execution command in an SCP command. Is that possible? It will save having to execute an SCP command first, then executing an SSH command on the transferred fiies. Is this ...
vfclists's user avatar
  • 779
2 votes
1 answer
2k views

ffmpeg combining both -af and -filter_complex filters (use left track to create mono only track *and* normalise audio)

I have lossless video captures of videotapes that I'm going to convert to FFV1 and FLAC. For a select few tapes, in the process, I also need to convert the audio to mono (only the left track exists as ...
Antonio Banderéz's user avatar
2 votes
5 answers
25k views

Combining data (but ignore blank cells)

I'm looking to combine the text data different cells in Excel. I am currently using the formula: =J3&", "&K3&", "&L3&", "&M3 When all my cells contain text, the outcome is ...
Nicky's user avatar
  • 21
2 votes
1 answer
2k views

How to combine two keys as a hotkey with Autohotkey?

I want to combine Left windows key with printscreen, for on my mouse xbutton2. i can't get any further than Xbutton2::Lwin Many thanks !
Dlshad Barzany's user avatar
2 votes
0 answers
403 views

Splitting audio out with ffmpeg, recombining with video, inserts black frames at beginning

I am using ffmpeg to split out the audio from a video file, converting it to a wav, and then recombining it with the video. When I do this, the new video has black frames at the very beginning. Here ...
Keith Johnston's user avatar
2 votes
0 answers
359 views

How to join 2 WAV files that overlap?

I have several WAV files that overlap a couple of seconds, concretely the first 6 or 7 seconds of one are the same as last of the previous. I'd like to join all of the chunks in just one file but ...
James Russell's user avatar
2 votes
2 answers
1k views

Excel mass add Data to existing sheet

I have an Excel Sheet with keeps track of Persons, who have gone to certain Activities. Now i want to add an Activity with hundreds of Persons, of which some have gone to others already. Then I want ...
Tom's user avatar
  • 85
2 votes
2 answers
400 views

Connection two wireless ADSL routers to share IPs

I have two wireless ADSL routers sitting right next to each other, each with his own internet connection. I'd like to be able to connect to a computer that is connected to router A from a computer ...
Eli's user avatar
  • 121
2 votes
1 answer
820 views

Is it possible to combine multiple WiFi?

Is it possible to use multiple WiFi at the same time to increase download speed, like combine them, or something like that? I have a ZTE WiFi and a TP-LINK WiFi. Here's some lspci code lspci | grep ...
Strike Linux's user avatar
1 vote
3 answers
461 views

How to combine all JPG files in a SubFolder to a "SubFolderName.PDF" file?

I have a root directory C:\ROOT and this directory contains a number of subfolders, which have the names already ordered in the proper sequence, like: C:\Root\Folder0001 C:\R00t\Folder0002 C:\R00t\...
Enrico Priotti's user avatar
1 vote
1 answer
2k views

How do I combine lines of text in Notepad++ that are between string lines into one line of code, while retaining lines outside the string delimiters?

I have 100s of pages in text format in Notepad++ that came from a pdf file. Each page in the file has varying amounts of lines, but they all contain lines that read “TARGET_LINE,” and "...
mapman's user avatar
  • 93
1 vote
1 answer
842 views

How do I combine varying multiple lines of text in Notepad++ into one line of code with a common beginning and ending string?

I have 1000s of lines of text in Notepad++ with multiple instances of lines beginning with “FIRST_LINE,” followed by varying numbers of lines, and ending with a line called "LAST_LINE,". ...
mapman's user avatar
  • 93
1 vote
1 answer
248 views

SSD + HDD combo modern configuration

I am finding a lot of information about the SSD+HDD combo configuration, but everything seems outdated. I would be using it on a laptop, 500GB HDD, 64GB SSD, and 16GB RAM. I will be using Xubuntu, if ...
Trylks's user avatar
  • 516
1 vote
1 answer
17k views

Combine two separate 8.5 x 11 PDF documents into one 11 x 17 PDF document?

I have some 8.5 x 11 PDF documents that are the "left" and "right" pages of what should be a 11 x 17 document. I am looking for a way to combine/stitch these files together. Either a Windows or Mac ...
Kevin Hakanson's user avatar
1 vote
1 answer
415 views

Combining every 15 rows into one across numerous rows

I have data spreading out in 45000 rows (single column). I need to combine every 15 rows into single row. So in the end I need to have 3000 rows with combined data from every 15 rows. from: row 1 ...
Jan Winkler's user avatar
1 vote
2 answers
1k views

How to substitute FALSE with N and TRUE with Y in one column

What formula can I use in an Excel column where I want FALSE to be N and TRUE to be Y? Data is imported from SharePoint Task List to Excel for a project completion report. Thanks
P Marco's user avatar
  • 11
1 vote
1 answer
941 views

How to join a picture and audio file on ffmpeg multiple times?

what I am trying to do is merge audio and picture files on ffmpeg multiple times. For example, this line of code (taken from Combine one image + one audio file to make one video using FFmpeg) allows ...
user714164's user avatar
1 vote
1 answer
14k views

Merge PDF files with related filenames automatically

I need to merge/combine several PDF files. What I have is multiple PDF files in one folder. The PDFs that need to be clubbed/combined together would have a partial file name in common; for example: ...
007MrBlackLight's user avatar
1 vote
1 answer
2k views

Networking Multiple PCs and using all their processing power for one program [closed]

I would like to use a set of networked computers to work out some processes which would normally take long to do on one. I figured that it might be done faster with networked PCs. These PCs are all ...
Mark Said Camilleri's user avatar
1 vote
1 answer
72 views

Joining 2 harddrives

I have 2 internal harddrives (500 and 750 gb) that I want to join up into 1 logical drive and use on different computers. How can I do this? Raid? Which one? if I move the harddrives to another ...
Helpme's user avatar
  • 11
1 vote
3 answers
6k views

How can I combine multiple setup files into one big setup file?

I am looking for a free program that combines multiple install files to one setup file. I want to be able to run one file to install many programs, one by one, and I want it to be able to run ...
Black's user avatar
  • 31
1 vote
0 answers
86 views

VBA code to copy data from different works book to specific sheet of master workbook

I have to copy data from 15+ workbooks and combine it into a different master workbook. All these 15+ workbooks are identical and contains a sheet(tab) named 'Comment' and have same header names for ...
Avinash's user avatar
  • 11
1 vote
1 answer
849 views

How to combine css and js files easily

For better maintenance I split my css and js files into many modules. However, when testing the site with https://search.google.com/test/mobile-friendly - Google is unable to load all files somehow. ...
Simon Ferndriger's user avatar
1 vote
1 answer
803 views

EXCEL - How do I consolidate rows with duplicate information in one column but combine data in the other columns

Click to see example data I have a spreadsheet of incoming products and the shipping containers they are arriving on. I want to combine rows with duplicate items while preserving the quantities of ...
ExcelUser7215's user avatar
1 vote
1 answer
1k views

Combining categories in charts

How do I combine "Chicken", "Moose" and "Pork" into one "Meat"-name, and the remainders into just "Seafood"? I would also want to show how much of the "meat" and "seafood" are "fresh" and "frozen"?
pilti's user avatar
  • 11
1 vote
1 answer
154 views

Clone audio from a virtual device into three physical devices that often are disconnected/connected

I have three audio devices I often switch between. One by 3.5mm through the motherboard, one pair of speakers connected through my monitor, and one pair of Bluetooth headphones. I switch between these ...
Vapid's user avatar
  • 171
1 vote
1 answer
69 views

Excel 2010 Help Combining Three Different Formulas Into One Cell

I am trying to combine three different formulas into one cell, but need help. The cell that is being edited, F3, has several numbers and spaces in the beginning, end, and middle of the number that ...
needhelp's user avatar