I'm a single undead gal trying to make it in the big city. I have to start somewhere and they're evil here. They don't judge. They've got necro-tempered glass. No burning up. A great medical plan, and who needs dental more than us?

Harmony ,'Conviction (1)'


Buffistechnology 3: "Press Some Buttons, See What Happens."

Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!


Gudanov - May 21, 2008 8:57:32 am PDT #6288 of 25501
Coding and Sleeping

How about audacity?

[link]

It will lose quality, but it won't make any notable difference for speech.

You'd need mp3 support added to Audacity as well

[link]


Jon B. - May 21, 2008 9:03:08 am PDT #6289 of 25501
A turkey in every toilet -- only in America!

It will lose quality, but it won't make any notable difference for speech.

That's why I suggested ffmpeg. Unfortunately, I can't seem to find a simple windows binary.


tiggy - May 21, 2008 9:16:46 am PDT #6290 of 25501
I do believe in killing the messenger, you know why? Because it sends a message. ~ Damon Salvatore

I downloaded Audacity, but apparently i'm a MO-ron and i can't figure it out.


Gudanov - May 21, 2008 9:23:29 am PDT #6291 of 25501
Coding and Sleeping

Are you able to get it installed and install lame?


tiggy - May 21, 2008 9:29:47 am PDT #6292 of 25501
I do believe in killing the messenger, you know why? Because it sends a message. ~ Damon Salvatore

install lame?

I installed it, but i have no idea what you mean by that. i've even imported the file i want to rip, but i can't figure out how to drag the cursor over to where i want it to start.


le nubian - May 21, 2008 9:33:22 am PDT #6293 of 25501
"And to be clear, I am the hell. And the high water."

tiggy,

why don't you import the file into itunes and then in the info part of the file in itunes set the start time and the end time to correspond to your segment.

then you duplicate that file as an mp3 and voila! new shortened file.


amych - May 21, 2008 9:33:46 am PDT #6294 of 25501
Now let us crush something soft and watch it fountain blood. That is a girlish thing to want to do, yes?

Basic Audacity editing tutorial with lots of screenshots [link]


Gudanov - May 21, 2008 9:33:52 am PDT #6295 of 25501
Coding and Sleeping

Huh, you should just be able to click on the graph where you want the track to play. Can you play the track?

I don't have Audacity installed here, so I can't look at interface to jar my memory.


amych - May 21, 2008 9:36:18 am PDT #6296 of 25501
Now let us crush something soft and watch it fountain blood. That is a girlish thing to want to do, yes?

Gud has it right -- you click in the timeline to set your cursor, and click/drag to highlight the parts you want to cut in the same way you'd highlight what you want to cut out in a word document. It's just that the interface can be a little fiddly (and waveforms a little strange if you're unfamiliar with them) if there isn't either a screenshot or someone there to help out. A lot of people have troube with it until they get used to what they're seeing.


Jon B. - May 21, 2008 9:57:27 am PDT #6297 of 25501
A turkey in every toilet -- only in America!

Anyone know php associative arrays? I've got a small two column mySQL table that i want to stuff into an associative array. The fields in the table are program_id and program_name. I want the array to have it's keys equal to the program_id and the values equal to the program_name.

Here's my code. The query in the first three lines is definitely working correctly, but I include it for completeness. I think the problem is in how I am assigning elements to the array, but I don't know the correct syntax. Help?

$query = "SELECT * FROM tbl_programs";
$query .= " ORDER BY program_name";
$progquery=mysql_query($query);

While ($progArr = mysql_fetch_assoc($progquery)) { $progTable[] = $progArr['program_id']=>$progArr['program_name']; }