<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/21031" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2021-08-20T05:37:53-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/21031</id>

		<entry>
		<author><name><![CDATA[mabrook]]></name></author>
		<updated>2021-08-20T05:37:53-04:00</updated>

		<published>2021-08-20T05:37:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110227#p110227</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110227#p110227"/>
		<title type="html"><![CDATA[youtube to mp3 download]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110227#p110227"><![CDATA[
that's a good one... i hope i know how to do it..   <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"> <br><br><br><br>can you make a simple script for that with <br><br><br>youtube to mp3 and the integrate the specific time to delete the file..<br><br><br>i really don't have any idea or know how to begin with..<br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12921">mabrook</a> — Fri Aug 20, 2021 5:37 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2021-08-20T05:28:23-04:00</updated>

		<published>2021-08-20T05:28:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110226#p110226</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110226#p110226"/>
		<title type="html"><![CDATA[youtube to mp3 download]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110226#p110226"><![CDATA[
deleting a file after a delay is quite simple.<br>You can do it using bash:<div class="codebox"><p>Code: </p><pre><code>find /your/public/path/ -iname '*.mp3' -mmin 120 -exec rm -f {} \;</code></pre></div>You can also do it with a tcl script:<div class="codebox"><p>Code: </p><pre><code>set mp3path "/your/public/path/"bind cron - "* * * * *" delmp3proc delmp3 {min hour day month dow} {   set tmpfiles [glob -directory $::mp3path *.mp3]   foreach mp3 $tmpfiles {      if {[file mtime $mp3]&lt;[expr {[clock seconds] - (120*60)}]} {         file delete -force $mp3      }   }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Fri Aug 20, 2021 5:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mabrook]]></name></author>
		<updated>2021-08-20T05:15:13-04:00</updated>

		<published>2021-08-20T05:15:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110225#p110225</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110225#p110225"/>
		<title type="html"><![CDATA[youtube to mp3 download]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110225#p110225"><![CDATA[
sorry i forgot to mention.. <br><br><br>once the file will be downloaded and be put in here;<br><br><a href="http://x.x.x.x/youtube-link.mp3" class="postlink">http://x.x.x.x/youtube-link.mp3</a>  <br><br><br>there's a limited time only from this file to be stored in public.. <br><br>let's say , after 1hour or 2hours it will be deleted automatically..<br><br><br>*** The purpose is to convert the youtube-link to mp3 and store the file in public_html of the user and it will be deleted after specific time.<br><br>That's it..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12921">mabrook</a> — Fri Aug 20, 2021 5:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2021-08-20T05:03:39-04:00</updated>

		<published>2021-08-20T05:03:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110224#p110224</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110224#p110224"/>
		<title type="html"><![CDATA[youtube to mp3 download]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110224#p110224"><![CDATA[
I don't see any difference, appart that the message is different and you want to put the mp3 file on a public webspace.<br><br>I'll see if I can find 15' to do a little script<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Fri Aug 20, 2021 5:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mabrook]]></name></author>
		<updated>2021-08-20T04:50:54-04:00</updated>

		<published>2021-08-20T04:50:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110222#p110222</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110222#p110222"/>
		<title type="html"><![CDATA[youtube to mp3 download]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110222#p110222"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>Not a new idea. Have a look to http://forum.egghelp.org/viewtopic.php?t=19601 or search for "youtube-dl" in the forum </code></pre></div><br><br>although the idea is there.. but it is different way .. <br><br><br><br>while from here is a different way also,, let's say [user shell public_html)<br><br><span style="color:green"><a href="http://x.x.x.x/~user" class="postlink">http://x.x.x.x/~user</a></span><br><br><span style="color:red">Example:</span><br>[user] !yt youtube-link<br><span style="color:orange">[bot] Converting to mp3: youtube-link.mp3 , please wait... </span> <span style="color:red">(youtube link converting )</span><br><br>after awhile (60seconds or 90seconds)<br><br>[bot] Download here: <span style="color:green"><a href="http://x.x.x.x/youtube-link.mp3" class="postlink">http://x.x.x.x/youtube-link.mp3</a></span>  <span style="color:red">&lt;--  see this one, it will appear in the channel, and this link is clickable to download</span><br><br><br>i hope you see a difference ..  <br><br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12921">mabrook</a> — Fri Aug 20, 2021 4:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2021-08-20T02:22:07-04:00</updated>

		<published>2021-08-20T02:22:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110221#p110221</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110221#p110221"/>
		<title type="html"><![CDATA[youtube to mp3 download]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110221#p110221"><![CDATA[
Not a new idea. Have a look to <a href="http://forum.egghelp.org/viewtopic.php?t=19601" class="postlink">http://forum.egghelp.org/viewtopic.php?t=19601</a> or search for "youtube-dl" in the forum<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Fri Aug 20, 2021 2:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mabrook]]></name></author>
		<updated>2021-08-19T17:59:31-04:00</updated>

		<published>2021-08-19T17:59:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110220#p110220</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110220#p110220"/>
		<title type="html"><![CDATA[youtube to mp3 download]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110220#p110220"><![CDATA[
hello all..<br><br>just posting the idea that i got it  from other irc networks. since a lot of coders now doing YouTube script to get the info/data/etc...<br><br>how about  we get the YouTube info/music/audio/video and convert to mp3 and downloaded it to specific path/dir. in specific user shell .<br><br>let's say [user shell public_html)<br><br><br><strong class="text-strong"><a href="http://x.x.x.x/~user" class="postlink">http://x.x.x.x/~user</a> </strong><br><br><br><br>example: <br><br>[user] !yt youtube-link<br>[bot]  Converting to mp3: <a href="http://x.x.x.x/youtube-link.mp3" class="postlink">http://x.x.x.x/youtube-link.mp3</a> <br><br>after awhile (60seconds or 90seconds)<br><br>[bot]  Download here: <a href="http://x.x.x.x/youtube-link.mp3" class="postlink">http://x.x.x.x/youtube-link.mp3</a> <br><br><br><br>i hope anyone get the idea..      <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12921">mabrook</a> — Thu Aug 19, 2021 5:59 pm</p><hr />
]]></content>
	</entry>
	</feed>
