Jump to content

Zimmer

Dedicated Members
  • Posts

    670
  • Joined

  • Last visited

Posts posted by Zimmer

  1. I use notepad++ and Cygwin and gcc. Though I am moving to Linux (grr if only I could stop the live cd sector errors grr) so am about to take Cygwin off that list. Oh and I use the Howstuffworks.com guide for learning C then I'll probably learn another language they have guide on there.

  2. 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

  3. 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

  4. Dito I usually just subscribe to the iTunes feed and than watch them on my ipod (also same with Hak5 Sorry :rolleyes: :rolleyes: :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.

  5. 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 :rolleyes: Myspace or :rolleyes: Facebook. Ugh!

  6. 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.

  7. 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: :rolleyes: :rolleyes:

×
×
  • Create New...