Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~863 People Reached
Favorite Forums
Member Avatar for jefferson9

Say i have a complete mp3 file with 10 seconds of silence at the end of the track. How can i chop off the X seconds from the end?

Member Avatar for jefferson9
0
98
Member Avatar for jefferson9

I need a solution for educational and pracitcal purposes. 1) Say there is a source for streaming music tracks (similar to pandora), how can i go about downloading these tracks? Also lets just assume this isn't piracy. 2) Hypothetically speaking, if this application did violate a sites terms of use …

0
56
Member Avatar for jefferson9

I'm using google's youtube api in my csharp application. is there any way to embed the references (dll files) in to my application so they don't have to be in the same directory at runtime?

Member Avatar for thines01
0
39
Member Avatar for jefferson9

I'm using a BackgroundWorker object to start a process, the following is inside of my BackgroundWorker.DoWork event: [CODE] ... process.StartInfo.FileName = "process.exe"; process.StartInfo.Arguments = arguments; process.StartInfo.UseShellExecute = false; process.StartInfo.CreateNoWindow = true; process.StartInfo.RedirectStandardOutput = true; process.EnableRaisingEvents = true; process.OutputDataReceived += new DataReceivedEventHandler(p_OutputDataReceived); process.Start(); process.BeginOutputReadLine(); while (process.HasExited == false) { if (worker.CancellationPending …

Member Avatar for Cameronsmith63
0
670