Jump to content

Zimmer

Dedicated Members
  • Posts

    670
  • Joined

  • Last visited

Everything posted by Zimmer

  1. Hey I just got a DSL USB boot working finally and thought I'd email it to you if you want it once you get it unzip it to the usb drive. and format your drive as FAT32 and restart and your done. Enjoy!! Post your eamil and I email it. And scan it if you think it is a virus or Trojan its not!!!! But go ahead scan it.
  2. Maybe a feature should be restore to restore all the settings on the computer to before the hacksaw gets plugged in so that if your developing it or seeing what it does you can get back your old computer.
  3. Does anyone even use handbrake for windows? I hear the mac version is better. Me? I don't I use the script with vlc above.
  4. Sorry it only allowed 20 selections. :angry: :angry: EDIT Deleting Apple Script for C#
  5. I HATE WINAMP!! Sorry for that I just well really do hate it. I like VLC. Reason well it has command line suport isn't all fancy and over packed with GUI features (To get advance features ypu basically use the command line. Oh and that I have wrote a script to rip DVDs into a iPod format this even includes DVD that Handbrake couldn't rip. If anyone is interested here's the script. All You do is tell it what titles the names and whether you want to test them before it rips those titles. @echo off :start echo Welcome to Video to iPod Converter!! echo This will convert your Videos that you select to iPod compatible format echo When your done just import to iTunes and sync your iPod echo This will put the conveted video on your desktop cd %userprofile%\desktop :malt set /p first1=First Video or Title? set /p type1=What type of video is this, 1.File, 2.DVD, or 3.Internet File? if %type1%==1. set type1="%first1%" if %type1%==2. set type1=dvd://@%first1% if %type1%==3. set type1="%first1%" set /p second2=Second Video or Title? set /p type2=What type of videp is this a 1.File, 2.DVD, or 3.Internet File? if %type2%==1. set type2="%second2%" if %type2%==2. set type2=dvd://@%second2% if %type2%==3. set type2="%second2%" set /p third3=Third Video or Title? set /p type3=What type of video is this a 1.File, 2.DVD, or 3.Internet File? if %type3%==1. set type3="%third3%" if %type3%==2. set type3=dvd://@%third3% if %type3%==3. set type3="%third3%" set /p fourth4=Fourth Video or Title? set /p type4=What type of video is this 1. A File, 2. A DVD, or 3. A Internet File? if %type4%==1. set type4="%fourth4%" if %type4%==2. set type4=dvd://@%fourth% if %type4%==3. set type4="%fourth4%" set /p test=Do you want to test the selected Videos or Titles? Yes or No if %test%==Yes goto test :no on edit echo Type None for the name if the title was none. set /p name1=First Video or Title Name? set /p name2=Second Video or Title Name? set /p name3=Third Video or Title Name? set /p name4=Fourth Video or Title Name? :conversions set /p watch multiple convert=Do you want to watch the videos while they get converted? Yes or No cd "C:\Program Files\VideoLan\VLC" pause if %watch multiple convert%==Yes goto watch if %watch multiple convert%==No goto no watch :watch if %first1%==none goto end vlc.exe %type1% :sout=#transcode{vcodec=mp4v,vb=1024,width=640,height=360,scale=1,acodec=mp4a ,ab=128,channels=2}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name1%.mp4"}}vlc:quit if %second2%==none goto end vlc.exe %type2% :sout=#transcode{vcodec=mp4v,vb=1024,width=640,height=360,scale=1,acodec=mp4a ,ab=128,channels=2}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name2%.mp4"}}vlc:quit if %third3%==none goto end vlc.exe %type3% :sout=#transcode{vcodec=mp4v,vb=1024,width=640,height=360,scale=1,acodec=mp4a ,ab=128,channels=2}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name3%.mp4"}}vlc:quit if %fourth4%==none goto end vlc.exe %type4% :sout=#transcode{vcodec=mp4v,vb=1024,width=640,height=360,scale=1,acodec=mp4a ,ab=128,channels=2}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name4%.mp4"}}vlc:quit goto end :no watch if %first1%==none goto end vlc.exe %type% :sout=#transcode{vcodec=mp4v,vb=1024,width=640,height=360,scale=1,acodec=mp4a ,ab=128,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name1%.mp4"}}vlc:quit if %second2%==none goto end vlc.exe %type% :sout=#transcode{vcodec=mp4v,vb=1024,width=640,height=360,scale=1,acodec=mp4a ,ab=128,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name2%.mp4"}}vlc:quit if %third3%==none goto end vlc.exe %type% :sout=#transcode{vcodec=mp4v,vb=1024,width=640,height=360,scale=1,acodec=mp4a ,ab=128,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name3%.mp4"}}vlc:quit if %fourth4%==none goto end vlc.exe %type% :sout=#transcode{vcodec=mp4v,vb=1024,width=640,height=360,scale=1,acodec=mp4a ,ab=128,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name4%.mp4"}}vlc:quit :watch if %first1%==none goto end vlc.exe %type1% :sout=#transcode{acodec=mp4a,ab=128,channels=2}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name1%.mp3"}}vlc:quit if %second2%==none goto end vlc.exe %type2% :sout=#transcode{acodec=mp4a,ab=128,channels=2}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name2%.mp3"}}vlc:quit if %third3%==none goto end vlc.exe %type3% :sout=#transcode{acodec=mp4a,ab=128,channels=2}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name3%.mp3"}}vlc:quit if %fourth4%==none goto end vlc.exe %type4% :sout=#transcode{acodec=mp4a,ab=128,channels=2}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name4%.mp3"}}vlc:quit goto end :no watch if %first1%==none goto end vlc.exe %type% :sout=#transcode{acodec=mp4a,ab=128,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name1%.mp3"}}vlc:quit if %second2%==none goto end vlc.exe %type% :sout=#transcode{acodec=mp4a,ab=128,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name2%.mp3"}}vlc:quit if %third3%==none goto end vlc.exe %type% :sout=#transcode{acodec=mp4a,ab=128,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name3%.mp3"}}vlc:quit if %fourth4%==none goto end vlc.exe %type% :sout=#transcode{acodec=mp4a,ab=128,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst="C:\Documents and Settings\%username%\Desktop\%name4%.mp3"}}vlc:quit :end set /p use again=Do you want to convert another video? Yes or No If not %use again%==No goto start :test cd "C:\Program Files\VideoLan\VLC" vlc.exe %type1% vlc:quit vlc.exe %type2% vlc:quit vlc.exe %type3% vlc:quit vlc.exe %type4% vlc:quit set /p edit title=Do you want to edit the titles? Yes or No if %edit title%==Yes goto malt goto no on edit
  6. Hello I'm Learning C, and wish to make GUI Apps for my friends who be extremely scared of Command Line Applications. Thnak You
  7. Sorry I can't believe I forgot those D'Oh edit FIXED
  8. Hello I am just starting to learn C and thought of starting Coding Section with Beginner Tips, Tips, Places to Learn, Compilers, Etc. ALL Languages. Just type the language name like bellow. This way you can just search for a language you need help on. C Place to learn that I found: Howstuffworks C Programing
  9. So what do you need sorry I didn't get your question. :) :)
  10. This is not good and DAMN he really is protective of his "baby". This is insane I surprised that Cisco doesn't have a backdoor I guess for security. Finacil Department. Ha. :D :D :D :o :o :o
  11. I liked it but the ending... I brought two birds home today... Gives me the creeps oh well its a movie and good.
  12. Ah but some would have live cd's hell if my parents put monitoring software I would be fine booting into linux on my laptop. Plus I would probably now how to put the BIOS password. I doubt they would now what the hell I'm talking about! Now if I could only boot through USB without kernel panics or live cd prerequisite
  13. Dito I usually just subscribe to the iTunes feed and than watch them on my ipod (also same with Hak5 Sorry :rolleyes: . Though the one podcast I always am looking forward too is labrats.tv it's really less advance but its a good checkup. Also that was my first podcast before that I didn't know about this stuff and I actually stumbled upon it by accident by just typing in labrats and it went to labrats.tv.
  14. Is it the links because I would be happy to help. I thought it was a isolated case.
  15. Hello I love Hak5 but I am having a problem downloading Season 3 Episode 1 and Season 2 Episodes 1, 3, 5, 6, 7, 8, 9, and 10 Also I love that you don't only keep the latest 5 or like 20 episodes. THANK YOU!
  16. What episode was that?
  17. Hay just wondering what your opinion of revision3 is. Mine? I like Systm and Tekzilla but that is about it. Oh and the broken which this kinda replaces but the broken is coming back. Yay! Otherwise I don't really care for their other podcasts especially diggnation all they do is discus digg.com topics and drink no technology. (I never liked social sites like that) No Myspace or Facebook. Ugh!
  18. If it is a U3 device to start the exploit do just have disable cd autorun or do you have to do even more.
  19. Couldn't You Replace the Sam File To Change the Hash this causes a different password or has Windows totally lock that out of possibilities. BTW utilman.exe runs even if the computer is locked. ******EDIT******* I heard of someone using Linux Live CD and coping cmd.exe and renaming it utilman.exe then Crtl + U then just type in explorer.exe and there was a video of it and it worked.
  20. Today going through the forums I saw Boris's screenshot of his system with task manager optimized so decided to do it my self. First process I decided to check was systra.exe I google it and came up was a virus on google. So I immediately end process. Then I read about it and find that it comes through a email and I was pretty sure it wasn't from there. So I find it in the Windows folder (were according to process library it resides). I right click and choose properties. Low and behold it was a Sigmatel Audio system tray application. I am sere glad because my heart was pounding, I was thinking am I really that open and all along I thought I was pretty secure! Wall turns out I am! :rolleyes:
  21. Can anyone help me with learning C. I did find a tutorial at howstuffworks.com but when I compiled using G++ through Cygwin it gave errors. I tried Python but realized I couldn't do what I wanted to (programs without interrupters to download). Can anyone help me learn C? Thank You
×
×
  • Create New...