Fedora :: Good MP3 To Ogg Vorbis Conversion Utility's?

Jul 7, 2011

Any good software that will do this?

View 7 Replies


ADVERTISEMENT

OpenSUSE :: DVD To Mpeg Conversion Utility ?

Mar 23, 2011

I need a utility to convert a non-copyprotected dvd to an mpeg file. Where can I find one? Something I can send via email.

View 9 Replies View Related

Ubuntu :: Good Native Backup Utility For 10.04

Jul 27, 2010

Can anyone recommend a good native backup utility for 10.04. I would like compression, the ability to image partitions and/or drives and a simple way to restore in the event of total drive failure. A nice incremental backup facility would be good too. I would be backing up to an external USB hard drive but of a smaller size than the source drive so compression and the ability to choose what and what not to backup is needed.

View 1 Replies View Related

Ubuntu Multimedia :: What May Be Good CD / DVD Label Printing Program Or Utility

Aug 20, 2010

I am in need of some input as to what may be a good cd/dvd label printing program or utility.I have used nero and surething on windows. I already tried glabel, the only template it has is for doulble sheet cd/dvds.I am looking for a single template or instructions for making labels in gimp or inkscape.

View 1 Replies View Related

General :: Good Backup Utility / Script / App / Got External FAT32 Drive

Mar 10, 2011

I am working from a laptop where all my work is stored on a 80GB drive. I am now also an owner of an external 250GB USB hard drive, formatted with FAT32. I want to keep it FAT32, so that I can offer some of my files to people that run Mac OS or Windows and I don't want to have them install ext3 for windows and what not.I am in need of a strategy which will allow me to keep a mirror of my laptop drive on my new external drive, i.e. no history / versioning required. However, I do care about file permissions. The files don't have to be stored as-is, they can be stored within a large (80GB?) tar file, that is fine - it would be easier for me to coerce people to open a .tar file than to install an ext3 driver for their OS, I suppose. I don't think I can keep file permissions otherwise, can I?

I have previously used a self-written sh script that used rsync to keep an up-to-date copy of my laptop filesystem on a USB flash drive, but in that case I had the flash drive formatted with ext3, so no problem with file permissions there. This time, it's trickier.

View 9 Replies View Related

OpenSUSE Multimedia :: Packman MPlayer And Vorbis On 11.2?

Dec 21, 2009

I've noticed the Packman mplayer's ffvorbis doesn't seem to be working on 11.2 (x86)-any vorbis seems to be decoded as very quiet noise that roughly matches the sound that ought to be made. Audio output (-ao) doesn't make any difference, and I've the same problem on three different machines. Xine, vlc, ffplay, etc. all work, as does -afm tremor (the reference decoder) with mplayer. The verbose output from mplayer seems to be the same between these systems and an older 11.0 system with a not-very-recently-upgraded version of mplayer. Unfortunately, packman does not keep old versions of packages, and compiling mplayer is somewhat of a chore, so it is not immediately easy to test an old version of MPlayer on 11.2 for me.

I'm using the samples from Vorbis.com: Music to test with, so I assume there is nothing peculiar about the files.

Is anyone successfully using current (1.0rc2_r29796) Packman MPlayer to play either vorbis .oggs or video with vorbis audio on 11.2? If so, was it a fresh install or an upgrade system? Architecture? Etc.-I've run out of machines to easily test on, and it doesn't work on any of them.

I realize that this is better-addressed to the Packman mailing list, but very few users seem to read it, and for whatever reason, the packagers never seem to have any problems with their own packages (even when they are clearly broken for many others); so I thought I would give it a try here first.

View 2 Replies View Related

Ubuntu :: Package Containing Ogg-vorbis Gstreamer Plugin

Feb 21, 2011

identify for me the package(s) that contain the gstreamer plugin for ogg-vorbis (both video and audio)?

View 7 Replies View Related

General :: Make Mp3 Player Recognize Ogg Vorbis?

Aug 16, 2010

I have a Sony Walkman 8gb model NWZ-S544. It does not recognize ogg vorbis, and I would like to know if anyone has found a way to make it play that file type, so I can get rid of mp3's.

View 3 Replies View Related

Ubuntu Installation :: Cpuid Utility Is Not Compiled With U9.04 And Utility Is Not Available As Package With Synaptic?

Feb 5, 2010

cpuid utility is not compiled with U9.04 and the utility is not available as a package with synaptic -
other distributions have it available as rpm . url

Any way to run this utility in the Debian world?

View 2 Replies View Related

Software :: Batch-convert A Bunch Of Old Wma Files To Ogg Vorbis?

Jan 15, 2010

I'm not asking for help here, just documenting something I just discovered. Yesterday I wanted to batch-convert a bunch of old wma files to ogg vorbis. Not wanting to go through intermediate wav files, I tried to use ffmpeg to do it in one go. I first tried using the following command (in a loop, which I won't print here).

Code:
ffmpeg -i $file -f ogg -acodec vorbis -ab 192k outputdir/$file "vorbis" turns out to be the built-in libavc implementation of the codec. In the process I discovered that the -ab value is always ignored. No matter what value you put, the output is always the default 64k (average, but of course it's vbr). You can however use the poorly-documented -aq option to set the audio quality used. The values don't correspond to the oggenc values though, being a number ranging from 10-100 (or more, I don't know what the maximum is). It's not exactly clear what number corresponds to what average bitrate, so you have to experiment. ~30 seems to give you an average-rate file, while anything above 60 is probably overkill.

Switching to the external libvorbis gave me more flexibility, although at a cost of much longer encoding times (note that ffmpeg must have been compiled with libvorbis support first).

Code:
ffmpeg -i $file -f ogg -acodec libvorbis -ab 192k outputdir/$file
ffmpeg -i $file -f ogg -acodec libvorbis -aq 6 outputdir/$file

I could use both -ab and -aq (with the numbers corresponding to the oggenc values), with no problems. ffmpeg does display some wrong values in it's output text, however. In addition, there's one more difference. The vorbis (libavc) codec provides an entry in the header of the ogg container reporting the average bitrate, but it doesn't appear to provide a similar bitrate header in the vorbis stream itself. Some programs may not report the bitrate value because of this.

libvorbis provides both headers, avoiding that problem. So to summarize, libvorbis appears to be a better codec choice than vorbis.

View 10 Replies View Related

Fedora :: Mplayer M4a To Mp3 Conversion

Oct 23, 2009

or any conversion I suppose. My question is simple: How do I use this command: mplayer -ao pcm *.m4a -ao pcm:file="*.mp3" to convert whole directories and place the converted tracks into another directory. The way it's listed above it will convert all songs with a .mp4 extension into a single file with a .mp3 extension. Which of course, is not what I want, but I know of no other way to use this command.

View 1 Replies View Related

Fedora :: Getting Error When Run Update Utility In F12?

Jan 29, 2010

I have just installed Fedora 12 (i686) and I am running the update utility, But after I do, I get this error! What to do? Link to image: [URL]

View 1 Replies View Related

Fedora :: Add / Remove Software Utility

Oct 1, 2010

When I bring up the Add/Remove Software there is a small square box to the left of the package description. Does a check mark in the box indicate that the package is already installed?

View 2 Replies View Related

Fedora :: Still Can't Boot Dell Utility Partition?

Jul 1, 2010

I have daul boot systems on Dell computers. Dell includes a Utility partition on /dev/sda1 which you are supposed to be able to boot by pressing F12 when booting. I've tried various ways to boot into it. Most recently I put

title Dell Utility
rootnoverify (hd0,0)
chainloader +1

[code]....

View 5 Replies View Related

Fedora :: Pidgin Repository Broke Yum Utility

Feb 16, 2011

After I install Pidgin my YUM function junst stop to work... I'm now trying to install "QEMU" and when trying to install it thru YUM I got that message below:

[root@Guga-NB Guga]# yum install qemu
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
http://rpm.pidgin.im/fedora/14/x86_6...ta/repomd.xml: [Errno 14] HTTP Error 404 : http://rpm.pidgin.im/fedora/14/x86_6...ata/repomd.xml
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: pidgin. Please verify its path and try again
[root@Guga-NB Guga]#

View 4 Replies View Related

Fedora :: Partitioning Hard Drive With F14 Utility

Jun 28, 2011

I have installed Fedora 14 along with Libre Office along with some other applications so I am learning slowly, re-learning really. However I am having a difficult time understanding partitioning. I would like to make another partition for Windoze. I also cannot get a USB mouse to work. I have run some commands to gather disk info I will refrain from list it here as it is a lot of data. At least until asked to do so. What I have run so far is fdisk -l, df, blkid, & cat fstab.

View 8 Replies View Related

Fedora :: CPU Scaling Utility Never Drops Below 1.60Ghz - Powersave Does Not Appear

Aug 11, 2009

My laptop is a unibody macbook and has an intel core 2 duo processor. The CPU Scaling Utility never drops below 1.60Ghz. Is this normal? Also. in the ferquency governors, powersave does not appear. Can I install it?

View 1 Replies View Related

Fedora Networking :: T-like Utility For Sniffing/logging TCP Connections?

Aug 19, 2010

I need a utility to record the traffic on a particular TCP port. I know there are packet sniffers that can do this, but I don't need to monitors the wire, just the traffic to and from my own computer. I would assume there is something out there that can hook into the TCP stack and copy the data to a file just before/after it goes out/in, but my google fu has failed me.

View 6 Replies View Related

Fedora :: A Tool/utility To Spit Out An Xorg.conf?

Sep 3, 2011

I plugged in an LCD to my x41 thinkpad's VGA port and GNOME was smart enough to add it to my laptop without much prompting. A little fiddling around gave me a large spanned desktop so the cursor can pan from side to side of the two joined screens.I was wondering if I could somehow make my other window managers use this configuration, but there is hardly an xorg.conf, only the things I had in xorg.conf.d. I would like to somehow 'grab' this config and share it across WM's. My second best option would be to grab someone's dualhead xorg.conf for an intel 915GM graphics chip.

View 3 Replies View Related

Debian :: Download Fedora Firewall Configuration Utility?

May 31, 2011

I want to know if I can download Fedora's firewall config utility and convert it to a .deb file using alien.

View 6 Replies View Related

General :: Screen Capture Utility Software For Fedora?

Mar 19, 2010

Suggest me a good screen capture utility software for fedora?

View 10 Replies View Related

Fedora Networking :: Finding A UPNP Port Mapping Utility?

Aug 7, 2009

Wondering if there is a uPNP Port Mapping Utility available for Fedora. Something like this :

[URL]

The program seems to be Mac only tho.

View 1 Replies View Related

Fedora Hardware :: Mouse Settings Utility Is Severely Malfunctioning

Jul 19, 2011

I don't know whether this should be filed under hardware or laptop, but my wireless mouse is acting sluggish. At first I thought that it was because I chose LXDE as my gui and maybe its pointer was just inherently bad or something, and began to regret my decision. However, upon trying the laptop's built-in touchpad, I found it to be smooth as butter. So, the problem is with the mouse. The mouse worked fine on Windows, so the problem is with the interface between OS and mouse.

Would the problem be fixed by installing a different Desktop Environment? Or is it something else? Is there a better driver I can download or something?One last thing of note: the mouse settings utility is severely malfunctioning. I change the sensitivity and hit OK, but when I check it again, the mouse sensitivity is reset.

View 5 Replies View Related

Fedora Installation :: Database Conversion From Mysql 4.1.22 To Mysql 5 For A Client?

Apr 2, 2009

I have the latest LAMP running on F10 but need to do a database conversion from mysql 4.1.22 to mysql 5 for a client.

View 4 Replies View Related

Fedora :: 15 + FireFox 4 + KDE = Not Good Look

May 24, 2011

New Fedora 15 user today and I noticed that FireFox 4.0.1 looks like it was written in the late 90's. I'm using KDE 4. See pic: What's causing this? Is it possible to do something about it? BTW, I installed Gnome 3 and KDE 4. Not sure if that has anything to do with it.

View 2 Replies View Related

Fedora Installation :: NVidia Driver - Unable To Find System Utility

Jun 15, 2009

I am a new user of Fedora 11. I am a Ubuntu user and could not get my GeForce 9100 on board graphics to work on my new computer with out crashing my computer so I decided I would try fedora. I downloaded the driver from NVidia and I am attempting to install it (Fedora didn't automatically find the driver). I get the following message:
"Error Unable to find the system utility 'ld'; Please make sure you have the 'binutils' installed. If you do have the bin utils installed, then please check that 'ld' is in your PATH."
I am running the driver from $Download as root. I don't know what ld or bin utils is or the check if I have it or if it is in my PATH.

View 9 Replies View Related

Fedora :: Good Video Editor?

Jul 22, 2009

needing a good video editor ?

View 8 Replies View Related

Fedora :: Good Voice-to-text App

Dec 1, 2009

anybody suggest a good voice-to-text app, something like dragon naturally speaking?

View 3 Replies View Related

Fedora :: Looking For A Good Autotuning Program?

Mar 10, 2010

I'm using fedora 12 64 bit and im looking for a program i can autotune spoken words. Does anyone have any suggestions? Ive heard of Autotalent but currently it doesn't support 64 bit linux.

View 2 Replies View Related

Red Hat / Fedora :: Wireless IP Not Showing Even Though Everything Looks Good

Feb 25, 2011

I don't see any IP even though eth1 seems to be up.

Here is some info:

Why I am not seeing any IP.

View 2 Replies View Related







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