No audio downloaded videos

Hi, I'm unable to watch videos downloaded to my pc from my phone. The video plays well, but there is no sound... help! Also, I'm a techno total phobe, then laymens terms please :D If I right click on the file to bring up the properties it says that it is a 3GPP.

Hello

1. what application you use to play these videos?

2 - is the question confined with any specific video?

The .3GPP is a type of media file that is not supported by the player, unless you acquire additional software:

3GPP multimedia. Ringtone/video files with .3gp file name extensions are usually present on Windows Mobile devices. You can download DirectShow on Internet filters that allow you to play the ringtone file in the drive. Remember, however, that some filters can introduce instability with your computer or programs in general. Ensure that the filters are a reliable supplier of software before downloading.

You can use your favorite search engine and download DirectShow filters for your computer. You can also search the Internet for some third-party software using your favorite search engine to convert the file PPM 3 or 3 players GP in a wmp file and install it.

NOTE: using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

Hope this information is useful.

Tags: Windows

Similar Questions

  • I installed the two DOWNLOAD HELPER & YOUTUBE VIDEO AND AUDIO DOWNLOAD (they are identical) and appear as an icon or appear on the window of the YOUTUBE video.

    I pulled out and in firefox several times and also rebooted. Still no icons for the downloader (s). When I find a video on Youtube and start playing, I still see no way to summon either YOUTUBE VIDEO & AUDIO DOWNLOADER or DOWNLOAD HELPER (are they the same add-on?). I also went in the Firefox Options to see if certain configuration prevents these work packages; saw nothing of use.
    Add-ons translator and screenshots of Nimbus - offered in the same e-mail of Mozilla as additional modules for the Downloader - installed with no problem and their icons appear on the masthead.
    Thanks in advance for your ideas

    The two managers are registered and active. Are their icons on any of the
    toolbars?

    Type of topic: customization< enter > in the address bar.
    In the new window, look for the icon. When you find it, press and hold
    the left button on it and move it to where you want it to be.
    You can move the icons you want here, but
    some icons are locked in place.

    Type of topic: addons< enter > in the address bar to open your add-ons Manager.
    Access key; < Control >(Mac: < command >)< shift > has)

    Select Extensions, locate the Add-ons. Press the Options
    push button for each one and check the settings.

  • I want to install firefox addon called "youtube video and audio downloader 0.3.5 by Chris. How can I check to see if it has malware

    How can I check if the program 'youtube downloader video and audio by Chris 0.3.5 has malicious software.
    When I go to download it has chain
    https://addons.Mozilla.org/Firefox/downloads/latest/413644/addon-413644-latest.xpi?src=userprofile

    I'm so nervous about downloading anything for fear of getting my hijacked browser or worse, because it's already happened twice. Any advice on this program or if there is a similar program to download youtube, who is known to be squeaky clean?

    Too, I have youtube downloader video and audio 0.3.5 by Chris on FF but have not used a lot or not at all. Today, Avast gave me a warning (probably a Malware DB recent update) that this product has very bad side. My two main concerns are a possible Trojan and adware popups - horse for now that I only have those on a single site, The Pirate Bay, but they are devilishly difficult to get rid of.

    Avast and some other malware utilities not come with Trojan horses, but I saw a EULA (on Board of another, may not be the same product) which explicitly stated the software would share information on the internet, probably tunnel through the firewall. Malware utilitie which would detect as a Trojan horse, or that they would assume that I installed it intentionally? How do they know?

    Are modules which arise on the FF Add-ons Manager > get guaranteed by Mozilla addons?

  • Download and save audio and video files

    Hello

    I am trying to record audio and video files that are larger than 5 MB in size.

    I open a Http connection and asking to 128 KB each time until the completion of the data transmission.

    for some files that are 1 to 2 MB code does not work well, but if you have large files MB it throws the error, ' Eception Exception: myApp Application (201) does not; process is completed"

    How can I fix this error. I searched the forum for this error, I found some funda but has not found a solution.

    AM making ala invokeAndLater() and therefore not blocking is not the eventThread.

    Here is the flow of my code that establishes the connection and starts to download.

    the following code snippet shows the flow of the code.

    // Constructor: displays a popup screen that allows the user to select a list of audio/video files for the download. 
    
    // Dictionary obj is a vector that contains list of file names.// IAudioVideoPopUp is an interface implemented by the caller. 
    
    public AudioVideoPopUp(Dictionary[] v, IAudioVideoPopUp guideIntroManager)  {     super(new VerticalFieldManager());        if( v!= null)     {         caller = guideIntroManager;           for(int i =0; i< v.length; i++)            {             btnFileNames = new MyButtonField(v[i].value.toString(), "images/button1_big.png", "images/button2_big.png",  true, Font.PLAIN, 18, v[i]);             btnFileNames.setChangeListener(new FieldChangeListener()              {                     public void fieldChanged(Field field, int context)                    {                     if(field instanceof MyButtonField)                        {                         final MyButtonField tempField = (MyButtonField) field;                            UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen());                           synchronized (UiApplication.getEventLock()) {                             UiApplication.getUiApplication().invokeLater(new Runnable(){                                  public void run()                                 {                                     UiApplication.getUiApplication().pushScreen(new WaitScreen());                                        caller.onClick(((MyButtonField) tempField).getDictionaryData());                                  }                             });                           }//                           PopupCloseThread pct = new PopupCloseThread(field);//                         pct.start();                      }                 }             });               add(btnFileNames);            }
    
              btnCancel = new MyButtonField("Close", "images/button1.png", "images/button2.png", true, Font.PLAIN, 18);         btnCancel.setChangeListener(new FieldChangeListener()             {                 public void fieldChanged(Field field, int context)                {                 UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen());               }         });           add(btnCancel);       }
    
       }
    
    // onClick method that was implemented in the caller. 
    
    // dictionary is a vector, contains info about the selected file in the popup.
    
    public void onClick(Dictionary dictionary)   {     if(dictionary != null)        {         switch(ContentType)           {         case 1:               playAudio(dictionary);                break;            case 2:               videoSelected(dictionary);                break;            default:              break;            }     } }
    
    // the following code calls for the downloading and saving of the file.
    
    private boolean downloadAndSaveVideo(long movieID2, String fileName, String URL, int fileSize)    {     if(URL!= null)        {         try           {             String videoFileURL = AppConstants.SDCARD+AppConstants.CONTENT_PATH+fileName;             if(new DownloadCombiner(URL, videoFileURL, 128*1024).run())               {                 return updateVideoTable(movieID2, videoFileURL);              }         }             catch (Exception e)           {             Tools.print("XCO: GuideIntroManager: downloadAndSave: Error..:" + e.toString());          }     }     return false; }
    
    // this is not a thread class. // here an repeatdly making the requests to get all the data.// please go thru the run().
    
    public DownloadCombiner(String remoteName, String localName,         /*int connection,*/ int chunksize)    {     this.remoteName = remoteName;     this.localName = localName;       this.chunksize = chunksize;   }
    
    public boolean run()     {     boolean result = false;       try       {         int chunkIndex = 0;           int totalSize = 0;
    
              /*             * File connection             */           FileConnection file = (FileConnection) Connector.open(localName);         if (!file.exists()) {             file.create();            }         file.setWritable(true);           OutputStream out = file.openOutputStream();
    
             /*             * HTTP Connections            */           String currentFile = remoteName; //+ connectionType();            Tools.Debug("Full URL: " + currentFile);          HttpConnection conn;          InputStream in;           int rangeStart = 0;           int rangeEnd = 0;         while(true)           {             Tools.Debug("Opening Chunk: " + chunkIndex);
    
                  conn = (HttpConnection) Connector.open(currentFile,Connector.READ_WRITE, true);
    
                  rangeStart = chunkIndex * chunksize;              rangeEnd = rangeStart + chunksize - 1;
    
                  Tools.Debug("Requesting Range: " + rangeStart + "-" + rangeEnd);
    
                  conn.setRequestProperty("Range", "bytes=" + rangeStart + "-"+ rangeEnd);
    
                  int responseCode = conn.getResponseCode();                if(responseCode != 200 && responseCode != 206)                {                 Tools.Debug("Response Code = " + conn.getResponseCode());                 break;                }
    
                  Tools.Debug("Retreived Range: "+ conn.getHeaderField("Content-Range"));
    
                  in = conn.openInputStream();              int length = -1;              byte[] readBlock = new byte[256];             int fileSize = 0;
    
                  while((length = in.read(readBlock)) != -1)                {                 out.write(readBlock, 0, length);                  fileSize += length;                   //Thread.yield(); // Try not to get cut off               }             totalSize += fileSize;
    
                  Tools.Debug("Chunk Downloaded: " + fileSize + " Bytes");              chunkIndex++; // index (range) increase               in.close();               conn.close();             in = null;                conn = null;              /*                 * Pause to allow connections to close and other Threads to run.               */               //Thread.sleep(1000);         }         Tools.Debug("Full file downloaded: " + totalSize + " Bytes");         if(totalSize>0)            {             result = true;                Tools.Debug("Wrote file to local storage");           }else{                result = false;               file.delete();            }         out.close();          file.close();     }         catch (Exception e)       {         result = false;           Tools.Debug(e.toString());        }
    
          return result;    }
    

    A little patience please.  Don't forget that you are awake does not mean that other people are.  I'd leave a Thread open for at least 24 hours before bumping.

    I'm sorry to tell you that invokeLater runs the executable on the wire of the event, not a separate Thread.  If you have actually started the treatment in the very thing you're trying to get away from.

    You must run the execution in DownloadCombiner treatment in a separate Thread.  This is why, in the article, which I suppose you DownloadCombiner, it extends Thread.

    Just for the record, DownloadCombiner is here:

    How - to download large files using the BlackBerry Mobile data system
    Article number: DB-00619
    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800431/How_To _...

  • Why can I not hear audio on videos that I downloaded on my android phone?

    Why can I not hear audio on videos that I downloaded on my android phone?

    Hi ebkawa1,

    Use the difficulty in step 2 of this document to troubleshoot common sound playback. Let us know if that helps.

  • Audio problem for the downloaded videos.

    I am not able to hear the audio of any of the downloaded videos from you-tube. I tried with different mediaplayers (VLC, GOM, KMP). In some even video does not play while in others only the video plays (without audio). Please solve this problem.

    Hello, YogeshDorbala

    Check that your speakers/headphones are not on Mute, the speaker icon can be found in the system tray near the Date time &. Click on the "speaker" icon > make sure that the blue speaker icon is not set to mute it is to reactivate it.

    Please see the following link for more information on the no sound in Windows:

    Audio Troubleshooting Guide:

    Microsoft Fix It: Automatically diagnose and fix Windows Audio playback problems:

    Kind regards

    Smithy.93

  • Satellite C650-152: Audio and video started to jump after software update

    Download the latest BIOS updates and as requested my laptop network card, and now all the audio and videos, including on the internet, jump every few minutes.
    Really annoying as didn't have the slightest idea on the computer technical stuff and it doesn't seem to be in any way ask Toshiba support.

    Any help would be appreciated, I have a Satellite C650-152 with Windows 7.

    Hello

    Go into the BIOS (F2 when starting the laptop) and in the BIOS the BIOS default settings.
    Press F9 for default settings.
    Save the changes and restart the device.

    May I ask if this product just streaming audio or video from the internet or have you noticed that play audio and video files stored on the HARD drive?

  • Satellite A80: How to restore the audio and video codecs?

    How to restore the audio and video codecs that are installed by default on my Satellite A80 with XP Home edition?
    I removed the safe mode, due to a problem with the Pinnacle Codec installed by Pinnacle Studio 10.
    Now, I need to put the video standard in audio codecs.
    I already downloaded the Microsoft Mediaplayer codec package and video sound new fr in Media Player.
    Unfortunately I have always its program to diagnose Toshiba during the test of its Midi and Wave.
    System Restore came with the message that the restoration was not possible because no changes had been made.

    Post edited by: roel

    Hello

    Try to use the tool "system restore."
    This application restores the operating system to the beginning.
    Maybe it will work.

  • Installed Win7-64, but can not find the multimedia Audio and video drivers.

    I bought a used m7100y CTO with Media Center 2005 PRE-INSTALLED. The pilots were also missing. A clean install on Win7-64, but has not found drivers for multimedia Audio or video. Software downloads show only an update of the Lightscribe driver. Where can I find missing drivers?

    Hello:

    The audio, which you can get here...

    Accept the agreement, download and install the file 2nd on the list.

    http://www.Realtek.com.tw/downloads/downloadsView.aspx?langid=1&PNid=24&PFID=24&level=4&Conn=3&DownTypeID=3&GETDOWN=false

    The graphics... all he says is that the graphics card is integrated. I would say it was the Intel GMA 950, which should be installed by Windows.

    Try this driver and if it does not, click on the VGA card in Device Manager, and then click the Details tab.

    http://Downloadcenter.Intel.com/Detail_Desc.aspx?AGR=Y&DwnldID=18228&keyword=%22Intel+GMA+950%22&lang=eng

    In the property drop-down list, select the second element (Hardware ID).

    After the first string of characters you see in the window.

    Who will give me more info on the model of the video card in your PC.

    Paul

  • Why can not download videos to Windows Movie Maker from my Samsung camera?

    It won't let me download videos on Windows Movie Maker, the video cannot be found

    Hello

    ·         What operating system do you use?

    ·         You get the error message?

    ·         What is the format of the video file that you are trying to download?

    If you are facing this problem in Windows 7, I suggest you to send your request to the forum for better support of Windows Live.

    http://www.windowslivehelp.com/product.aspx?ProductID=5

    If you use Windows Vista refer:

    Import video, photos and audio on Windows Movie Maker

    http://Windows.Microsoft.com/en-us/Windows-Vista/import-video-files-pictures-and-audio-into-Windows-Movie-Maker

     
    See also:
     
     
     
     
     

    For Windows XP, see:

    http://Windows.Microsoft.com/en-us/Windows-XP/help/Movie-Maker/FAQ

  • downloaded video will not play.

    2 video issues-
    1. I downloaded 4 videos from my camera. The first 1 played, others don't. When I went back to the 1st, no game. I keep getting "server cannot run." In addition, the 4 camera videos do not appear in windows media center. I tried to send them there and they're going to step in.

    2. I downloaded videos from my phone and there is no audio data. The sound is fine when I play it on the phone. I went to the D.E.P., and I can't find how to allow files to be read. In addition, the 4 camera videos do not appear in windows media center. Any way to solve this problem?

    Hi Paul,.

    ·         What is the operating system installed on the computer?

    ·         What is the file format of the video you are trying to play? (Phone and camera)

    ·         Were you able to play videos from the camera before?

    ·         You use Windows Media Player to play these videos?

    Step 1: Check if the file format of the video is taken care of by Windows Media Center.

    Information on the types of media files that supports Windows Media Player

    To find the file format of your video, right click on the downloaded file, and select Properties. Check the File Type.

    Step 2: Install the Codec Installation Package to see if it helps. (For Windows XP)

    Download the Setup Package of details - Microsoft Download Center - Codec Player Windows Media 7.1 or later version

    See also:

    Codecs: Frequently asked questions

    Respond with more information so we can help you best.

  • someone at - it audio and video drivers for a HP m7170n?

    someone at - it audio and video drivers for a HP m7170n? We had to climb a new hard drive and there was no disk backup with the driver information.

    Thank you!

    Yes, I understand your point.

    I'll assume you have XP Media Center Edition, which was the operating system that is provided with your PC.

    The specifications of your system also specify that your PC comes with the video card ATI Radeon X300SE, correct?

    Below should be XP video drivers you need for this card:

    http://support.AMD.com/us/gpudownload/Windows/legacy/pages/radeonaiw_mce.aspx?type=2.4.1&product=2.4.1.3.13&lang=English

    You can download the complete driver of features and software catalyst control center (the first download listed, or simply the WDM (Windows Driver Model) driver (without the catalyst control center software).

    Paul

  • I use windows xp, I have a problem of the file conversion vlc m4as in mp3 and download videos from the net...

    I use windows xp.  I can't convert the m4as vlc mp3 files, or similar, so that i can burn it to disc and sync with my portable mp3 player.  Also, I would like to download videos on the net, how do I do this safely? (I recently downloaded some malicious programs).  A simple step-by-step guide would be appreciated.  Thank you very much.

    I use windows xp.  I can't convert the m4as vlc mp3 files, or similar, so that i can burn it to disc and sync with my portable mp3 player.  Also, I would like to download videos on the net, how do I do this safely? (I recently downloaded some malicious programs).  A simple step-by-step guide would be appreciated.  Thank you very much.

    ========================================
    You * still * trying their luck downloading media
    files on the net... I don't think it's impossible to guarantee
    that no problem will occur.

    That said... the following free software may be useful:

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Freemake - Free Audio Converter
    http://www.Freemake.com/free_audio_converter/
    (Windows XP / Vista / 7)
    (* Read * all * the installation screens... it)
    may be a few items you want to unmark *)

    When you have installed Freemake... Open Freemake
    and drag and drop your audio files on the main screen.

    Or... Click left on the Audio button, then navigate to the
    your audio files are saved in the folder.

    Select (highlight) the files you want to import into
    Freemake and left, click on the button 'open '.

    When your audio files are imported into Freemake,
    On the left, click the MP3 icon at the bottom of the screen.

    The "Output settings" screen opens.  Choose
    ' Save in ' file so you can find the converted files.

    On the left, click the "Convert" button and the files must be
    converted very quickly.

    This should make 23 for a downloader...

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Freemake Video Downloader
    http://www.Freemake.com/free_video_downloader/
    (Windows XP / Vista / 7)
    (* Read * all * the installation screens... it)
    may be a few items you want to unmark *)

    Freemake - how to download the video for free
    http://www.Freemake.com/how_to/how_to_download_video_free

    Freemake - how to download TV shows online
    http://www.Freemake.com/how_to/how_to_download_online_tv_shows

  • Impossible to get vlc media player to download videos from the net. Unable to play c.d. burned files with vlc multimedia/victory over them. Failed to get the same files on my alba mp3 player. Thank you.

    I'm used to be able to download videos on the web using flv/vlc.  With my previous laptop, with XP, there was a small rectangle under the screen that gave me this opportunity.  How can I install this option with my new version of XP?  Also, I will have played poorly burned CD on a drive C.D House/car with music media/vlc victory over them.  How do I overcome this?  Finally, similar obstacle with my mp3 player.  I downloaded several types of software that I fight to become familiar with options are so numerous that I find myself with a lot of Simian head scratches.  "virtually the intructions of braindead" guide please about your answers.  Thank you.

    What format are the files on the cd that you tried to play on the radio? MP3 files or audio files?

    And HOW burn you to CD?

    You can not just copy and paste them on a cd.

    Which site you want to go down the videos on the net? If his YouTube, using an addon, if you use firefox

    CDburnerXP will allow you to make MP3 CDs and it's free.

  • HELP V3 - 572 G Windows 10 update NO SOUND and wont play any audio or video file

    Hello world

    I just upgraded to windows 10, very nice update and don't usually return to 8.1, but unfortunately not windows programs will play files, audio or video of any kind and when you use VLC Player or youtube videos, the files will play but no sound?

    I checked all the regular suggestions such as the properties of the device and it claims to work fine etc., sound is not mute, except pass by and update drivers I don't know where to go from here.

    I was going to do a reset, keep my files, remove applications and settings, etc., I was warned it would remove apps, but a lot of what seems to be crucial drivers/programs will have to be re-installed manually. Also after doing a reset, you lose the ability to go back to 8.1

    Since when they were abducted during a reset?

    Any help is very appreciated,

    see you soon

    Jessie

    Uninstall your Realtek drivers and install the latest audio driver Realtek available here:

    http://www.station-drivers.com/index.php/downloads/func-startdown/1618/

    Web site, 100% reliable, you must extract the files, double-click on the exe and the balance sheet to create a folder on the file setup.exe

Maybe you are looking for