Post Reply 
Slush.Net YouTube Mp3 Converter Version 2
Author Message
Slushba132
BustyLoli-Chan

Posts: 3,125.3993
Threads: 508
Joined: 20th Feb 2008
Reputation: -8.27558
E-Pigs: 73.1299
Offline
Post: #1
Slush.Net YouTube Mp3 Converter Version 2
Lost the old version after a reformat and the number of songs I want is just increasing so I've decided to develop a new version of it. This time it's almost entirely asynchronous :D
I'm currently working on building the firefox extension because I don't remember how I did it last time


also if anyone actually installed the extension and has the firefox extension if you could give me the xpi file for that I would be grateful

22/06/2011 09:15 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Joom
WOOP
Worlds End

Posts: 4,206.7320
Threads: 417
Joined: 20th Mar 2009
Reputation: 5.41709
E-Pigs: 134.1772
Offline
Post: #2
RE: Slush.Net YouTube Mp3 Converter Version 2
This is your site?

http://www.slush.net/

[Image: ROVBdMh.png]
3DS Friend Code: 5000-6045-4964
22/06/2011 09:27 PM
Find all posts by this user Quote this message in a reply
eKusoshisut0
NOIDED

Posts: 6,288.3965
Threads: 102
Joined: 6th Mar 2010
Reputation: -0.51929
E-Pigs: 174.7326
Offline
Post: #3
RE: Slush.Net YouTube Mp3 Converter Version 2
(22/06/2011 09:27 PM)Joom Wrote:  This is your site?

http://www.slush.net/

lol you were close


http://slushnet.dyndns.org/

[Image: tumblr_mlae69vAW21rmerh9o1_400.gif]


More stuff
Steam Page
[Image: K7UVN.png]
Thanks to Vacui_Natale for making this awesome siggy.
[Image: cq8au.gif]
Thanks to Natalie for this sexy Mawaru Penguindrum sig. <3
[Image: ofusT.png][


    
[Image: 9252_s.gif]

22/06/2011 09:32 PM
Find all posts by this user Quote this message in a reply
Assassinator
...

Posts: 6,646.6190
Threads: 176
Joined: 24th Apr 2007
Reputation: 8.53695
E-Pigs: 140.8363
Offline
Post: #4
RE: Slush.Net YouTube Mp3 Converter Version 2
Better, don't convert anything, just demux the audio directly out of the stream.
22/06/2011 09:41 PM
Find all posts by this user Quote this message in a reply
-UrbanHybrid23-
Do You Want A Taco?

Posts: 551.1159
Threads: 24
Joined: 20th Jun 2010
Reputation: 4.57281
E-Pigs: 18.4247
Offline
Post: #5
RE: Slush.Net YouTube Mp3 Converter Version 2
(22/06/2011 09:41 PM)Assassinator Wrote:  Better, don't convert anything, just demux the audio directly out of the stream.

What? o.0?
22/06/2011 09:59 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Slushba132
BustyLoli-Chan

Posts: 3,125.3993
Threads: 508
Joined: 20th Feb 2008
Reputation: -8.27558
E-Pigs: 73.1299
Offline
Post: #6
RE: Slush.Net YouTube Mp3 Converter Version 2
All the program goes is pass the video to ffmpeg
ffmpeg does the actual converting from an flv to an mp3
the program just sits there between the browser extension and ffmpeg and spits converted files where ever you tell it to

23/06/2011 11:51 AM
Visit this user's website Find all posts by this user Quote this message in a reply
S7*
Sweet Dreams

Posts: 16,689.4373
Threads: 1,056
Joined: 3rd Apr 2007
Reputation: 14.29926
E-Pigs: 383.2289
Offline
Post: #7
RE: Slush.Net YouTube Mp3 Converter Version 2
(22/06/2011 09:41 PM)Assassinator Wrote:  Better, don't convert anything, just demux the audio directly out of the stream.

indeed, repacking into m4a/mp4 should do it just fine.
23/06/2011 11:59 AM
Find all posts by this user Quote this message in a reply
Slushba132
BustyLoli-Chan

Posts: 3,125.3993
Threads: 508
Joined: 20th Feb 2008
Reputation: -8.27558
E-Pigs: 73.1299
Offline
Post: #8
RE: Slush.Net YouTube Mp3 Converter Version 2
I was thinking of making it allow the option to convert to a music video or an mp3 file
probably wouldn't be too hard, but since I'm the only one who uses this thing anyway and I really only wanted mp3's I don't see the point Erk

24/06/2011 03:38 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Assassinator
...

Posts: 6,646.6190
Threads: 176
Joined: 24th Apr 2007
Reputation: 8.53695
E-Pigs: 140.8363
Offline
Post: #9
RE: Slush.Net YouTube Mp3 Converter Version 2
(24/06/2011 03:38 AM)Slushba132 Wrote:  I was thinking of making it allow the option to convert to a music video or an mp3 file
probably wouldn't be too hard, but since I'm the only one who uses this thing anyway and I really only wanted mp3's I don't see the point Erk

Well, re-encoding causes quality loss.  Demuxing doesn't.

And it's not hard or anything.

Demux audio stream

Code:
mplayer -dumpaudio -dumpfile out.aac in.flv
or
ffmpeg -i in.flv -acodec copy out.aac


Mux raw aac into m4a

Code:
mp4box -add out.aac out.m4a


(24/06/2011 03:38 AM)Slushba132 Wrote:  I was thinking of making it allow the option to convert to a music video or an mp3 file

Music video is even easier.  Just rip the stream off youtube and that's it.
(This post was last modified: 24/06/2011 05:19 AM by Assassinator.)
24/06/2011 04:38 AM
Find all posts by this user Quote this message in a reply
Slushba132
BustyLoli-Chan

Posts: 3,125.3993
Threads: 508
Joined: 20th Feb 2008
Reputation: -8.27558
E-Pigs: 73.1299
Offline
Post: #10
RE: Slush.Net YouTube Mp3 Converter Version 2
Anyway to do all that with just ffmpeg?
because so far that's the only tool I'm using
also is FFMPEG bad? oo

would you recommend another tool?
I'd rather only use one or two if possible lol

24/06/2011 04:53 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

 Quick Theme: