I need some help on searching for a specific .avi file

Page 1 of 4 123 ... LastLast

  1. Posts : 8
    Windows 7 Home Premium 32bit
       #1

    I need some help on searching for a specific .avi file


    Ok, just this morning I tried doing some stuffs on my computer. My sister wants me to convert the Project Diva Extend Opening video to the computer, so tried ripping the .pmf from my UMD and found out that there were no audio for it. So I searched and searched until I found this [HTML=http://www.pspmod.com/forums/off-topic-discussion/25338-convert-pmf-avi.html#post670789]thread[/HTML]. As you can see, I already posted here that the .avi files are missing. I need to delete them or locate them somehow, it's not on my c: or anything. But it is accessible via mplayer.exe

    I need help ASAP >.< thanks as well on the advance~
      My Computer


  2. Posts : 10,994
    Win 7 Pro 64-bit
       #2

    Hello shi0n and welcoem to Seven Forums.

    Just for my own clarification, when you say the .avi files are missing but "...accessible via mplayer.exe", is mplayer.exe accessing the .avi files from your hard drive or someplace else? If from the hard drive, have you tried doing a wildcard search? In the Start Menu search box try searching for *.avi and every .avi file on the hard drive should be located along with its file path (if you right-click and select properties.) Other search techniques are explained here:

    Search in Windows 7

    Windows 7 Search - wildcards and search codes

    If I misunderstood your question I sincerely apologize.
      My Computer


  3. Posts : 8
    Windows 7 Home Premium 32bit
    Thread Starter
       #3

    marsmimar said:
    Hello shi0n and welcoem to Seven Forums.

    Just for my own clarification, when you say the .avi files are missing but "...accessible via mplayer.exe", is mplayer.exe accessing the .avi files from your hard drive or someplace else? If from the hard drive, have you tried doing a wildcard search? In the Start Menu search box try searching for *.avi and every .avi file on the hard drive should be located along with its file path (if you right-click and select properties.) Other search techniques are explained here:

    Search in Windows 7

    Windows 7 Search - wildcards and search codes

    If I misunderstood your question I sincerely apologize.
    I already tried this, since I've been searching here and there for some answers. What I recently did was to put some files in my external harddrive so I wouldn't need to worry about the memory thing. But it would really be great if someone knows this kind of problem. I already tried searching using the Date, ext., filename, only .avis, still, those two files are nowhere to be found but they're playable by mplayer.exe using this command on cmd.
    First open cmd, then type cd c:\ then enter
    next type mplayer convert.avi
    it would play the convert.avi which is found in C:\ right? I tried showing every hidden folders and files, it's still missing.
      My Computer


  4. Posts : 17,545
    Windows 10 Pro x64 EN-GB
       #4

    And you are sure you have searched for avi extension on whole computer, Explorer window on Computer view?

    Kari

    I need some help on searching for a specific .avi file-search_extension.png
      My Computer


  5. Posts : 8
    Windows 7 Home Premium 32bit
    Thread Starter
       #5

    here are some screenshots





    notice that I typed mplayer convert.avi

    notice that I also typed next was done.avi

    here I tried renaming media player classic shortcut link to mpc, so I typed mpc convert.avi next picture mpc done.avi



    there you guys have it. I hope you guys can figure this out, I really need to know how to delete these files or might as well locate them at the same time, I tried using del done.avi, but file is not found
      My Computer


  6. Posts : 8
    Windows 7 Home Premium 32bit
    Thread Starter
       #6

    Kari said:
    And you are sure you have searched for avi extension on whole computer, Explorer window on Computer view?

    Kari

    I need some help on searching for a specific .avi file-search_extension.png
    Finished doing that, I posted some screenshots so it would be more accurate for the problem >.<
      My Computer


  7. Posts : 17,545
    Windows 10 Pro x64 EN-GB
       #7

    shi0n said:
    I posted some screenshots so it would be more accurate for the problem >.<
    More accurate? Your post was most confusing I have seen, with screenshots of no value showing absolutely nothing worth to know, except the fact that you do not really know what and how you should search.

    To start, a short command line tip about FIND command which you seem to have tried: it is not used to search files, it is used to search a (text)string IN files. Following example for instance searches string Some text in all .txt files in target folder:
    Code:
    find "Some text" *.txt
    This one searches string Create in file Backup.vbs (a Visual Basic Script):
    Code:
    find "Create" Backup.vbs
    If found, the full text row containing the searched string will be shown:

    I need some help on searching for a specific .avi file-2013-01-20_005312.png

    Using Command Prompt, the search is done with DIR command. It only searches the current folder, with switch /s current folder and all its subfolders.

    An example:
    Search all AVI files in current folder and its all subfolders:
    Code:
    dir *.avi /s
    When you remember that cd\ command always takes you to the root of the current drive, you can search your whole computer with a few commands. Following command sequence (commands in that order you would give them on Command Prompt) would first search .avi files on C:, then on D: and finally on E:, always starting from the drive root:
    Code:
    • C:
    • cd\
    • dir *.avi /s
      • Here would appear a list of found *.avi files on C:
    • D:
    • cd\
    • dir *.avi /s
      • Here would appear a list of found *.avi files on D:
    • E:
    • cd\
    • dir *.avi /s
      • Here would appear a list of found *.avi files on E:
    The screenshot below shows search of .avi files on my User Profile drive E: and its subfolders, and then shows all folders (in this example just one) containing .avi files listing the found files:

    I need some help on searching for a specific .avi file-search_extension_2.png

    You screenshots show no searching and explain absolutely nothing. Did you do what I asked you to do in my previous post, search .avi files on Windows Explorer opened to Computer view. See the screenshot below, it's from Windows 8 but search is exactly the same in Windows 7:

    I need some help on searching for a specific .avi file-search_extension_1.png

    Kari
      My Computer


  8. 4wd
    Posts : 337
    W7, W8.1
       #8

    jeez, once upon a time searching for lost files was a simple, easy and failsafe task i windows.

    Try Agent Ransack - Free File Searching Utility

    Easy job: enter *.avi + the drive (letter) you want to search (alt. use the dropdown menu to choose the whole pc). If the file exists, it will be found.

    Optional, enter some dates and\or size to narrow down the search.
    Attached Thumbnails Attached Thumbnails I need some help on searching for a specific .avi file-capture.jpg  
      My Computer


  9. Posts : 8
    Windows 7 Home Premium 32bit
    Thread Starter
       #9

    Kari said:
    shi0n said:
    I posted some screenshots so it would be more accurate for the problem >.<
    More accurate? Your post was most confusing I have seen, with screenshots of no value showing absolutely nothing worth to know, except the fact that you do not really know what and how you should search.

    To start, a short command line tip about FIND command which you seem to have tried: it is not used to search files, it is used to search a (text)string IN files. Following example for instance searches string Some text in all .txt files in target folder:
    Code:
    find "Some text" *.txt
    This one searches string Create in file Backup.vbs (a Visual Basic Script):
    Code:
    find "Create" Backup.vbs
    If found, the full text row containing the searched string will be shown:

    I need some help on searching for a specific .avi file-2013-01-20_005312.png

    Using Command Prompt, the search is done with DIR command. It only searches the current folder, with switch /s current folder and all its subfolders.

    An example:
    Search all AVI files in current folder and its all subfolders:
    Code:
    dir *.avi /s
    When you remember that cd\ command always takes you to the root of the current drive, you can search your whole computer with a few commands. Following command sequence (commands in that order you would give them on Command Prompt) would first search .avi files on C:, then on D: and finally on E:, always starting from the drive root:
    Code:
    • C:
    • cd\
    • dir *.avi /s
      • Here would appear a list of found *.avi files on C:
    • D:
    • cd\
    • dir *.avi /s
      • Here would appear a list of found *.avi files on D:
    • E:
    • cd\
    • dir *.avi /s
      • Here would appear a list of found *.avi files on E:
    The screenshot below shows search of .avi files on my User Profile drive E: and its subfolders, and then shows all folders (in this example just one) containing .avi files listing the found files:

    I need some help on searching for a specific .avi file-search_extension_2.png

    You screenshots show no searching and explain absolutely nothing. Did you do what I asked you to do in my previous post, search .avi files on Windows Explorer opened to Computer view. See the screenshot below, it's from Windows 8 but search is exactly the same in Windows 7:

    I need some help on searching for a specific .avi file-search_extension_1.png

    Kari
    well what I showed you guys there that the .avi was accessible via mplayer.exe on my c:\
    And also I have done what you have said already on your previous post. Now let me do what you have just said, it might just work :)
      My Computer


  10. Posts : 25,847
    Windows 10 Pro. 64/ version 1709 Windows 7 Pro/64
       #10

    I have no idea what post #5 is all about. I just type in avi in the search libraries of expolrer and tick on computer and get this.


    I need some help on searching for a specific .avi file-search-avi.png

    I'm I misunderstanding something?
    Make sure indexing is active.
      My Computer


 
Page 1 of 4 123 ... LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 16:07.
Find Us