Software :: Extract Audio From Mkv File
Oct 19, 2010
how can extract audio from a mkv file.. i've done it with ffmpeg but the output's quality was terrible. do you knox any apps for doing that kind of thing with not loosing its quality. platform: debian testing
View 4 Replies
ADVERTISEMENT
Apr 20, 2011
i like to know if can extract the audio track from a MP4 file sorry to ask is acc track how to extract it
View 10 Replies
View Related
Apr 17, 2010
I would like to know how to demux the audio from a flash video file (copied from /tmp while browsing a video site). I would prefer to avoid re encoding if possible.
View 5 Replies
View Related
Feb 2, 2011
Code:
mencoder The.Negotiator.mkv -of rawaudio -oac mp3lame -ovc copy -o sound-mencoder.mp3
I got a 195.3MB mp3 file
[code]...
View 2 Replies
View Related
Mar 16, 2011
If I convert an audio file to a different format (such as mp3) using a pipe I lose the tags.
Code:
ffmpeg -i <filename> -f wav - | lame - output.mp3
If I knew the tags of the input file I could put them back using a program such as id3v2
[code]....
View 7 Replies
View Related
Jan 20, 2011
For about three months I've been going up and down the internet looking for a solution to this problem... Basically I take this distance learning course. Every lesson is sent to me via email in PDF format and it includes many audio examples which are embedded in the file. The problem is none of the Ubuntu readers seem to recognize it, and the Adobe reader says I need a plug-in which does not exist for my system. I quote: "We're sorry, but the third-party media player required to play the selected media file in your Adobe PDF document isn't available for your system". I've been taking this course for two years and I still have two more to go. I contacted the company that sells this course and they were as puzzled as I am... Is there a way to extract the audio from the PDF? Or alternatively open it with another application? I would hate to have to go back to windows for this one issue...
View 3 Replies
View Related
Feb 7, 2010
I'm trying to extract audio and then convert to mp4 format a bunch of flv files downloaded from internet. There are three files I intend to use ffmpeg in the following options:
ffmpeg -i input.flv -acodec copy output.mp3
and
ffmpeg -i "input.flv" -f mp4 -vcodec libxvid -s 640x360 -b 768kb -r 25 -aspect 16:9 -acodec libfaac -ab 96kb -ar 44100 -ac 2 "output.mp4"
So I started writing a script like this:
#!/bin/bash -x
cd /home/koli/exp
[Code]....
View 5 Replies
View Related
Feb 23, 2010
I have a video file I wish to extract the audio from .... its a seminar that was recorded in mpeg but all i need is the audio into mp3 .
View 9 Replies
View Related
Dec 1, 2009
I've decided to start backing up my dvd collection. I want to extract all of the audio, video, and subtitle streams individually (from the main movie title only). Then for convenience and usability I want to put them all in a .mkv container. How can I do this and with which programs? ffmpeg, vlc, mplayer? If I can do this all at once, that's fine. But I don't want to get the streams out of sync.
View 10 Replies
View Related
Dec 2, 2010
I have two video files (Xvid) and would like to combine the video from one of these with the audio track of the other, in order to create a new video file.
This is somewhat complicated by the fact that I would like the resulting audio to be a mixture of the two original audio tracks, for instance, during some time segments, I would like to switch from one to the other, but the video should always be the same.
Another issue that complicates the things is that the two audio tracks have different bit rates, and when I briefly managed to merge the two, one of the audio tracks was playing much faster than the other. To clarify, the audio tracks should not overlap but just be played at the different time during the video playback.
I am trying to do this by using Audacity. The problem is that I am fairly new to Audacity and I have not been able to find any info in their user guides regarding this specific issue.
View 4 Replies
View Related
Sep 1, 2011
When ever I extract a file from a .tar or whatever, it isn't detected. I notice this mainly when i'm using xampp. I copy zip up all my files on one computer, load ubuntu on another, extract the files to the web folder (htdocs) and then I get nothing. However, when I manually create the files directly on my computer as opposed to extracting them, they appear.
Is there something I need to do in order to have these files appear? Is there some sort of file system refresh? Or am I being a complete idiot?
View 5 Replies
View Related
May 10, 2011
I have been using windows operating system for a long time now, but I am not well familiar with linux. Whenever I used to install Windows, I used to install the corresponding audio drivers(in order to listen to the music). The problem I am facing is that I do not know how to install the audio drivers(if they really exist in linux Mint 10 operating system). As a result I am not able to listen to any audio file due to lack of corresponding audio driver programs. make proper configurations settings so that I can listen to audio files in Linux Mint version 10.
View 4 Replies
View Related
Jul 21, 2010
This is what I tried to do:>cd ~/Desktop >sudo sh ati-driver-installer-10-1-x86.x86_64.run --extract.After entering my password, this appeared: >sh: Can't open ati-driver-installer-10-1-x86.x86_64.run.What am I doing wrong? It apparently worked in this thread.
View 7 Replies
View Related
Apr 14, 2011
how do I extract a pgp file on Ubuntu? I have the file and a passphrase. On Windows I have Kleoptra so I can right click the file and click 'decrypt'. Is there an easy way to do this on Ubuntu?
View 3 Replies
View Related
Jan 21, 2011
I know a .bin file is an executable file type in linux. We have an error after installing it and it referes to a file name and a line number within the file. I'm trying to find out if the file is part of the .bin file but I need a way to see what's inside of it or extract it.
View 5 Replies
View Related
May 17, 2011
it is possible to extract a value from a file with awk, grep or something similar. I have a file like this...
ID1,NAME1,LAT1,LON1,VAR1=5.0,VAR2=7.0,VAR6=9.0,VAR15=0.0,VAR20=0.0
ID2,NAME2,LAT2,LON2,VAR1=6.0,VAR15=1.0,VAR20=5.0,VAR22=0.0
ID3,NAME3,LAT3,LON3,VAR1=10.0,VAR2=20.0,VAR3=8.0,VAR10=3.0,VAR15=0.5,VAR20=9.0
[code].....
and I want to extract VAR15 from each line (which can be at any column unfortunately - columns separated with commas - csv file), or VAR15 together with LATn,LONn from each line. Is it possible to do it with awk, grep or something other in linux?
View 11 Replies
View Related
Aug 31, 2010
I am trying to untar a file taken from true 64 bit Unix server to RHEL 5 server and I am getting a following error-Archive contains obsolescent base-64 headers.What can be done to extract the contains of those tar file.
View 2 Replies
View Related
Apr 18, 2011
I need to extract a .dsk file, but I have no idea how to do it. The file I want is allegedly the visicalc source code. [URL]
View 2 Replies
View Related
Mar 12, 2011
I have downloaded squid2.6.STABLE23.tar.gz file. I want to untar the file. The file is located in /home. how can I untar the file so I may install the software.
View 18 Replies
View Related
May 22, 2011
how i can extract this Login.jar..
View 9 Replies
View Related
Feb 13, 2011
File in question is [URL].. meder@pc:~$ tar -xvjf wkhtmltopdf-0.10.0_rc2-static-i386.tar.bz2 bzip2: (stdin) is not a bzip2 file. tar: Child returned status 2 tar: Error exit delayed from previous errors
I tried to unzip it as well, and I tried a various slew of commands to no avail on my Debian box which has no GUI. I downloaded this on my local desktop ( Ubuntu ) and was able to easily extract w/ my mouse so I'm not exactly sure what the extractor did differently...
View 1 Replies
View Related
Apr 21, 2011
Im trying to extract the contents of a zip file but I want to extract it to my own directory. I'v tried -d from unzip but that just puts the contents of the zip into that directory.
But I want to extract the contents of the first (root) directory in the zip if there is only one directory in the root of the zip else just extract the files/folders in the root of the zip file (if there are more then one files).
e.g. test.zip contents the following dir structure:
test.zip
/app_v1/ <-The contents of this directory I want extracted to a dir of my choice
- folder-1
- folder-2
- folder-3
- folder-4
- file1
- file2
View 2 Replies
View Related
Jan 24, 2010
I just installed Ubuntu for the second time, first time was like 2 years ago and my pc was an oddball and some stuff was just not supported properly. Anyways.. I've got the latest build of Ubuntu installed, everything is working fine, just one problem.
I have many, many, many files that are archived in multiple .rar's. Like .r01, .r02, etc... I have them all copied over to the harddrive, but cannot extract what is in them. Also, I have some of these .rar's archived in a single .rar because of windows being stupid and not letting me copy them to my external drive as the names of them were too long for windows to handle. Those .rar's will extract a couple of the .r01, etc.. files, but not all of them.
View 8 Replies
View Related
May 19, 2010
I can't seem to extract it with any archiver, and when I used unrar from the console, I get this:shai@shai-desktop:~/Desktop$ unrar c1700-adventerprisek9-mz.124-15.T8.rarunrar 0.0.1 Copyright (C) 2004 Ben Asselstine, Jeroen DekkersExtracting from /home/shai/Desktop/c1700-adventerprisek9-mz.124-15.T8.rarExtracting c1700-adventerprisek9-mz.124-15.T8.image Failed 1 FailedYou can see that it can open the archive but it can't get the file inside.
View 2 Replies
View Related
Jun 9, 2010
I have installed unrar-free, and I am trying to extract a file from a .rar archive (actually the file is split into several archives).
When I choose one of the .rar files and open it with Archive Manager, there are no errors and the file to be extracted shows in the Archive Manager window. I then choose to extract it, and after that I click on "show files". But when the folder supposedly containing the extracted file opens, the file isn't there.
Maybe relevant info:
I am running latest stable version of Ubuntu, as the user that was created during the Ubuntu installation. The files are in my "Downloads" folder, and the Archive Manager window says that the .rar file is read-only.
View 3 Replies
View Related
Jun 10, 2010
I formatted a partition on a USB stick in ext2 format for Linux with GParted. I tried to extract a file onto the partition and received a error that said I did not have the permissions to do it.
View 4 Replies
View Related
Jan 4, 2011
I've got a large .tar.gz file that I am trying to extract, I have had a look around at the problem and seems other people have had it, but I've tried their solutions and they haven't worked.The command I am using is:
Code:
tar zxvf file.tar.gz
and the error is:
[code]...
View 9 Replies
View Related
Jul 28, 2010
I have a file : cpq_cciss-2.6.20-34.rhel4.i686.dd which is designed to build a floppy disk; these floppy is used to hold disk driver which is not on RedHat CD-Rom. But this .dd is not complete: some files, like /drivers/pci.ids are missing.My idea is to extract all files from .dd file, put missing files and then re-create a new dd file. But, how can extract all files from initial .dd file, and then recreate a new one?
View 8 Replies
View Related
Aug 5, 2010
I have a file similar to this:
I need to print the last line for each user into a file. The resulting file should look like this:
Is there a way that AWK can match lines from $1 and then print the last line into a file?
View 7 Replies
View Related
Jun 15, 2010
I stay in /var/www/upload and I want extract a file with tar command.
The output of tar xfvz /var/www/file.tar.gz is
Quote:
tar: /var/www/esempio.tar.bz2: funzione "open" non riuscita: Nessun file o directory
tar: Errore irrimediabile: uscita immediata
tar: Child returned status 2
tar: Uscita con stato di fallimento in base agli errori precedenti
View 4 Replies
View Related