Ubuntu :: Grabbing Short Clip From Audio File
May 12, 2010
I've got a short mp3 file from the BBC's League of Gentlemen comedy show. In the clip, Papa Lazarou tells his dwarfs to put a poster in the local shop. Then he says "Tell them the circus is coming to town."I'd like to grab that sentence "Tell them the circus is coming to town" so I can make it into a ringtone for my phone or something.
View 1 Replies
ADVERTISEMENT
Dec 28, 2010
Ihave some video clips that i would like to use in web pages and Internet forums as animated images. is there a good free program out there that can get the job done. i also noticed that several gif images on the Internet lag like they skipped several frames, i don't want that i want the animation to play smoothly even if it means the file size will be astronomical.
View 1 Replies
View Related
May 4, 2010
I'd like to take audio track from a video clip in FLV container and save it to something playable by portable music players. Are there any easy to use tools for that? I know how to do that using console tools (mplayer+lame/oggenc), but I'd like to get something clickable, preferably for GNOME.
View 3 Replies
View Related
Aug 10, 2010
I am trying to convert uploaded audio files to my server into a full mp3 and then a 30 ogg clip. I have tried LAME but couldn't get it to clip.
View 1 Replies
View Related
May 2, 2010
I just noticed, that the fanfare that signals a successfully finished burn process in K3B is interrupted after the first three tones. How can I get back the fanfare in full length?
I am on Slackware64-current with all updates up to 2nd May, 2010.
View 2 Replies
View Related
May 14, 2011
After doing a dist upgrade I discover that I have firefox 4.0 and it has disabled adblock plus 1.3.3 and I can not get the new adblock plus since I can not uninstal the old one. Does anyone know how to fix this short of zaping the entire .mozilla file?
View 4 Replies
View Related
Jun 25, 2010
the short file descriptor of an ISO file. I have been assigned with a task to match the short file descriptor of an ISO file(to be provided to the customer) to check if thats "Kudgo Support tools" or not.What linux command should I use?
View 6 Replies
View Related
Aug 12, 2010
Is there a command line option that will allow less to return to the command line if there are not sufficient lines in the file to warrant paging.
View 1 Replies
View Related
Oct 3, 2010
is there any software for grabbing the videos even before it actually play back
View 2 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
Aug 17, 2010
I've got a basic install (i.e., nothing fancy, no compwiz or whatever) of 10.4 (64 bit) on my computer, running gnome desktop. I find it very difficult to "grab" the edge of a window, when I want to resize it longer or wider and frequently I just wind up selecting the window below it when I try to drag it wider or longer. Is there a way to increase the border area in which that arrow-pointing-to-edge (as opposed to the usual cursor) appears to make it easier to grab the damn thing?
View 2 Replies
View Related
Jun 9, 2011
I want to be able to grab some text from a directory listing in a bash script, and then apply that text to future commands in the same script. For instance, say I do "ls -lais /media/Movies" and get:
2147560409 712544 -rwxr-x--- 1 root users 729645056 1999-03-07 11:45 Young Guns (1987).avi
2147560410 712400 -rwxr-x--- 1 root users 729497600 2002-01-09 01:11 Young Guns II (1990).avi
Then say I want to grab the year from this output and then use that information as part of the command to modify the file timestamp, such as:
touch "Young Guns (1987).avi" -t 198701011200
touch "Young Guns II (1990).avi" -t 199001011200
So that the result of ls -lais is:
2147560409 712544 -rwxr-x--- 1 root users 729645056 1987-01-01 12:00 Young Guns (1987).avi
2147560410 712400 -rwxr-x--- 1 root users 729497600 1990-01-01 12:00 Young Guns II (1990).avi
Anyway, that's just one example, but I often find myself needing to do this type of thing, and I'm sure its possible, just not really done enough scripting recently to know how to do it.
View 5 Replies
View Related
May 20, 2010
What's the best command to use to grab just a regular expression from some text input? I've got is some input is in the form:
<uninteresting><start-marker><good stuff><end-marker><uninteresting>
I can construct a RE to match <start-marker>.*<end-marker>, but is there a utility that would return *just* the <good stuff> I'm interested in? I realise that the alternative is something along the lines of:
Code:
cat <input-file> | awk -F'start-marker' 'print ${2}' | awk -F'end-marker' 'print ${1}'
but it would be better if I could do it all in one go.
View 5 Replies
View Related
Mar 24, 2011
Here's the scenario, rsync is running in RMT on tty2. I (LCL) am connected to RMT remotely as root over ssh. Is it possible to grab output of RMT's tty2 on my LCL? I don't want to redirect RMT's tty2 out to my pts, just get a mirror output.
View 6 Replies
View Related
Aug 2, 2010
I would like to grab wiki code from a wiki page using wget. Running this grabs HTML:
wget -O wikihtml.html [URL]
The first attempt at getting wiki code was to pretend to edit, and run:
wget -O wikiedit.html [URL]
but of course that grabs GUI HTML. I thought perhaps the text inside the text box would be in tact, but HTML is througout. How to get just the raw wiki code?
View 2 Replies
View Related
Apr 9, 2010
I'd like to write a C/C++ program, that would grab content of window (in form of pixmap), which belongs to another application and do something with it. However, I ran into problems already at the beginning. In all toolkits I have searched through, I only found one function that claims to do what I want, namely XGetImage from Xlib. However, among other parameters like Display, coordinates, etc., it requires a Drawable. How do I specify a Drawable, that would correspond to the window I want to grab content of? Is there any easier way to achieve this?
View 2 Replies
View Related
Jun 28, 2009
I want to display an un-intrusive graphical dialog to notify the workstation user that a bash script has finished running. It should be "top level", so visible to the user when it appears but should not grab focus, so the user can continue working in the current window and dismiss the notification when convenient. Researching gdialog, xdialog, xmessage and zenity it seems none of them can do this; they all grab focus.
View 3 Replies
View Related
Jul 16, 2010
I would like to convert OGV files to audio format.
View 4 Replies
View Related
May 26, 2011
Trying to run Tor and it keeps coming back with the error,
Quote:
I've tried two different libevent packages, one I build myself from SlackBuilds.org, and both return the same error.
View 6 Replies
View Related
Aug 22, 2010
I need to save some clips from a DVD as either a DV-AVI or DV-MOV format. What program can I use to do this?
View 4 Replies
View Related
May 8, 2010
I just upgraded from 9.10 x64 to 10.04 x64 on my desktop. My Sansa Clip+ (USB mass storage mp3 player with SD card slot) stopped auto mounting. It worked fine in 9.10.
dmesg:
Code:
[ 56.290051] usb 1-5: new high speed USB device using ehci_hcd and address 4
[ 56.360222] hub 1-0:1.0: unable to enumerate USB device on port 5
[code]...
View 7 Replies
View Related
Aug 27, 2010
I can not get my desktop running Ubuntu 9.10 to recognize my SANSA clip music player. When I plug it in (nothing), No icon on desktop, nothing in Nautilus. I've verified the USB ports are working by plugging in thumb drives and my I-pod.
When I hook the SANSA to my wife's laptop running Ubuntu 8.04 it works great no problems. I must have a setting wrong on my computer, but have NO idea how to fix it.
View 2 Replies
View Related
Nov 28, 2010
I'm on kubuntu 10.10 and kdenlive 0.7.8 and since the upgrade to 10.10 Kdenlive crashes whenever I import a clip with a segfault.
Here's the dump from console:
File given: true
Color mode changed to 0
File given: true
QWidget::insertAction: Attempt to insert null action
QWidget::insertAction: Attempt to insert null action
Bus:pen: Can not get ibus-daemon's address.
IBusInputContext::createInputContext: no connection to ibus-daemon
[dv @ 0x3219fa0]Estimating duration from bitrate, this may be inaccurate
[dv @ 0x31564d0]Estimating duration from bitrate, this may be inaccurate
[dv @ 0x3204600]Estimating duration from bitrate, this may be inaccurate
[dv @ 0x3219fa0]Estimating duration from bitrate, this may be inaccurate
[dv @ 0x31564d0]Estimating duration from bitrate, this may be inaccurate
[dv @ 0x3204600]Estimating duration from bitrate, this may be inaccurate
Diverting av_*_packet function calls to libavcodec. Recompile to improve performance
Last message repeated 1 times
swScaler: pal8 is not supported as output pixel format
KCrash: Application 'kdenlive' crashing...
KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi from kdeinit
sock_file=/home/jason/.kde/socket-denpc/kdeinit4__0
QSocketNotifier: Invalid socket 11 and type 'Read', disabling...
[1]+ Stopped kdenlive
View 2 Replies
View Related
Dec 3, 2010
I have bought a cepstral Text to speech voice, but it is only usable from the command line. I want to be able to copy text from firefox and execute it automatically in the command line. Is there a way I can do that?
View 9 Replies
View Related
Dec 28, 2010
somebody gave me a dvd of my little music group, and i used a ubuntu application to edit out two clips (i think i used avidimux--it was about a year ago). it produced a clip in avi format, which is not accepted by anything. i'd like to upload it to my facebook or even videos, but need to convert it. i've tried about everything, but have had no success. i just downloaded winff and tried that. the conversion window produce a lot of information ending with "unknown encoder 'libx264'," whatever that means.
does anyone know how i would convert a clip from avi to mpeg4? it's driving me nuts.
View 2 Replies
View Related
Jan 6, 2011
Rhythmbox can see my Sansa Clip+ but not music on it. When you have a look at the Sync options the Music, Podcast etc are all empty but it also shows Other !.2 gb which must be my mp3 files.
How can I get them into the Music file and to show up in Rhythmbox.
View 4 Replies
View Related
Jul 23, 2011
I've always had trouble with Banshee recognizing media devices. Right now I have a Sansa Clip+ which I'd really like banshee to recognize. Unfortunately it wont at all.
View 1 Replies
View Related
May 22, 2010
my Lucid lynx doesn't mount my mp3 player,its already setup in USB-MODE as MSC , but it doesn't show it in desktop, or media folder, or mnt folder or under file system my usb is detected
this is my lsusb output:
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 002: ID 046d:c018 Logitech, Inc. Optical Wheel Mouse
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
[Code]...
View 4 Replies
View Related
Aug 16, 2010
Kernel 2.6.21.5, GNU (slackware 12.0).
KDE 3.5.7
K3b 1.0.2
I have a FLAC file with 24-bit samples instead of 16 bits. I could use the flac linux command to obtain a WAVE file and then cdrecord to burn the audio CD. Unfortunately, cdrecord requires 16-bit digital audio as input. Is there a program able to author 24-bit audio CDs either from a FLAC file or from a WAVE file?
View 9 Replies
View Related
Apr 1, 2010
I'm trying to convert OGG clip to avi using mencoder:
Code:
mencoder myclip.ogg -ovc lavc -oac mp3lame -o myclip.avi
It works OK except that while the original clip has 16:9 aspect ration, the resulting AVI is 4:3
View 2 Replies
View Related