I need to stop the sound in an .flv file I'm streaming

Is there any param value... or anything else I can use to stop the sound in an .flv file I'm streaming from the server?
I do not have the original video that the flv was created with... otherwise this would be a no brainer.
I want to keep the video up but take away the sound.  Thanks much!

AFAIK there's nothing in the server side API that would support that. You can, on the client side use NetStream.receiveAudio(false), but that won't prevent the server from serving audio... it just stops a particular client from subscribing to the audio
Alternately, you can use FFMPEG to strip the audio channels out of the FLV.

Similar Messages

  • I have a macbook pro 1175 its a 2006 model which boot camp will work i tried 4.03 but it says this boot camp is not for this machine thats the oldest one i found here please help i have windows 7 32 bit installed but need drivers for the sound

    i have a 2006 mackbook pro running windows 7 32 bit i need drivers for the sound and the earliest bootcamp on here is 4.03 my machine says its not for this system please help which version of boot camp can i use

    Read this. You need to be running Snow Leopard or later.
    http://support.apple.com/kb/ht3986

  • I have the djay app on my ipad and i want to record the set i'm playing on my iphone through garageband. i need to take the sound from the headphone jack of the ipad, as the 30pin connector will be used to connect to the DJLive accessory. Is this possibl?

    i have the djay app on my ipad and i want to record the set i'm playing on my iphone through garageband. i need to take the sound from the headphone jack of the ipad, as the 30pin connector will be used to connect to the DJLive accessory. Is this possibl?reco

    You may get a better response in this community:
    https://discussions.apple.com/community/app_store/garageband_for_ios

  • How do I stop the sound (bong) when i receive a new email even though my settings are set to vibrate only?

    how do I stop the sound (bong) when i receive a new email even though my settings are set to vibrate only?

    Opening in the sidebar is the default for bookmarks that are created via a link or button on a website.
    You can check the properties of a bookmark via the right-click context menu in the sidebar (Ctrl+B; Command+B on Mac).
    In the Bookmarks Manager (Bookmarks > Show All Bookmarks) you can click the More button in the Details pane at the bottom right.
    Make sure that "Load this bookmark in the sidebar" is not selected.

  • I get an audio sound when my S5 connects to a wifi source.  How do I stop the sound?

    I get an audio sound when my S5 connects to a wifi source.  How do I stop the sound?

        Let's see if we can get that notification sound off treecastle! Please try going into Settings> Sound> Notifications> select Silent> Apply. This should get rid of that notification.
    Thank you,
    VanessaS_VZW
    Follow us on Twitter @VZWSupport

  • Do I need to stop the dbTier or/and appsTier when ... ?

    Do I need to stop the dbTier or/and appsTier when I run
    perl adpreclone.pl dbTier
    perl adpreclone.pl appsTier
    or when I copy the Source System to the Target System (for the appsTier) ?
    Thanks,
    Paul

    Do I need to stop the dbTier or/and appsTier when I run
    perl adpreclone.pl dbTier
    perl adpreclone.pl appsTierThe database and the database listener should be up and running when you run the above two commands. For the application tier, you can keep it up or shut it down.
    or when I copy the Source System to the Target System (for the appsTier) ?It is recommended you shutdown the application services when you copy the application files. Some operating systems do not allow copying file while it is in use (like Windows).

  • How do you stop updates on apps once you have selected to update all?  I am limited on how much I can download daily and I need to STOP the updates

    I only have a limited amount to download daily and I need to stop the updates.

    Deletion of apps works as you describe EXCEPT in the case of apps that are pre-loaded as part of the iOS.  Apps that are part of the iOS cannot be deleted by the user.
    To free storage space, try removing unneeded videos, photos, music that take a very large amount of space.

  • HR: Need to Send the Paysilp as a PDF file through Mail to Employees

    Dear All ,
           Need to Send the Paysilp as a PDF file through Mail to Employees.
           can anyone please suggest any Standard Function Modules which takes the Payslip Form as input and convert it into PDF and can send it through mail to the concern employees.
          Can anyone please explain the procedure in detail.
    Thanks in Advance,
    Regards.

    venu,
    below is code which helps to generate pdf ,,,,hope u know how to use the mail sending function
    data:
    fm_name TYPE RS38L_FNAM, "Smart Forms: FM Name
    sf_name TYPE TDSFNAME
    value 'YOUR_FORM_NAME', "Smart Forms: Form Name
    P_OUTPUT_OPTIONS TYPE SSFCOMPOP,
    P_JOB_OUTPUT_INFO TYPE SSFCRESCL,
    P_CONTROL_PARAMETERS TYPE SSFCTRLOP,
    P_LANGUAGE TYPE SFLANGU value 'E',
    P_E_DEVTYPE TYPE RSPOPTYPE.
    data:
    P_BIN_FILESIZE TYPE I,
    P_BIN_FILE TYPE XSTRING,
    P_OTF type table of ITCOO,
    P_DOCS type table of DOCS,
    P_LINES type table of TLINE,
    name type string,
    path type string,
    fullpath type string,
    filter type string,
    guiobj type ref to cl_gui_frontend_services,
    uact type i,
    filename(128).
    GET SMARTFORM FUNCTION MODULE NAME ---
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = sf_name
    IMPORTING
    FM_NAME = fm_name
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
    EXPORTING
    I_LANGUAGE = P_LANGUAGE
    I_APPLICATION = 'SAPDEFAULT'
    IMPORTING
    E_DEVTYPE = P_E_DEVTYPE.
    P_OUTPUT_OPTIONS-XSFCMODE = 'X'.
    P_OUTPUT_OPTIONS-XSF = SPACE.
    P_OUTPUT_OPTIONS-XDFCMODE = 'X'.
    P_OUTPUT_OPTIONS-XDF = SPACE.
    P_OUTPUT_OPTIONS-TDPRINTER = P_E_DEVTYPE.
    P_CONTROL_PARAMETERS-NO_DIALOG = 'X'.
    P_CONTROL_PARAMETERS-GETOTF = 'X'.
    ****...................................PRINTING.........................
    CALL FUNCTION fm_name
    EXPORTING
    CONTROL_PARAMETERS = P_CONTROL_PARAMETERS
    OUTPUT_OPTIONS = P_OUTPUT_OPTIONS
    (....) <--- your form import parameters
    IMPORTING
    JOB_OUTPUT_INFO = P_JOB_OUTPUT_INFO.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    P_OTF[] = P_JOB_OUTPUT_INFO-OTFDATA.
    ****...................................CONVERT TO PDF...............
    CALL FUNCTION 'CONVERT_OTF_2_PDF'
    IMPORTING
    BIN_FILESIZE = P_BIN_FILESIZE
    TABLES
    OTF = P_OTF
    DOCTAB_ARCHIVE = P_DOCS
    LINES = P_LINES
    EXCEPTIONS
    ERR_CONV_NOT_POSSIBLE = 1
    ERR_OTF_MC_NOENDMARKER = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    now you can mail the pdf.
    Reward points if helpful
    Regards,
    jinesh

  • I need to reduce the size of several pdf files before transferring them onto a research database. Each file is made up of 100 images (pages of diaries)

    I need to reduce the size of several pdf files before transferring them onto a research database. Each file is made up of 100 images (pages of diaries) & is up to 1.36 GB in size. I have tried reducing file size in preview but the images are unreadable. Any ideas? 

    WHen I want to reduce the file size, I either use "Optimize Scanned PDF", or more often use "Reduce File Size". Both are on the Document menu. The Reduce File Size selection has some limited customization that is used, when selected.

  • I've taken the app OFF my phone months ago but I need to stop the charges, how do I do that?

    I continue to be charged for Slacker Radio even thou I took thge app off my pone months ago.  HELP!

    Did you cancel the service before you got rid of the app... ? If you get rid of a app off to your phone the people to whom you are paying for a service has No idea you removed the app.. an app is a program. Removing it doesn't cancel anything with a service you agreed to pay for. .. sounds like you need to reinstall the app, the log Into the app and proceed with cancelling the service...   think of it like this. You pay for cable service..  just because you unplug th cable box for 1 Month  doesn't mean your bill goes down or stops.

  • I need help with the sound on my computer.

    I know this question isnt apple related but when I go to websites with video I can watch the video but the sound doesn't work. I have been all over the internet and this was the best place I could think of to get information. Someone please help me.

    Hi Emily
    A few people here may be able to answer your question.
    Have you tried posting your question at Yahoo Answers? http://answers.yahoo.com/
    Or start a discussion at Google Groups http://groups.google.com/
    You would also need to post more information on the subject, such as computer type, operating system, processor speed, amount of installed RAM , web browser that you are using. Also mention if you have Adobe Flash player, Adobe Shockwave player, Apple Quicktime Player or any other media player.
    Hope this helps in your search
    J.C
    Message was edited by: J.C

  • Stop the Sound

    Hey guys,
    I am trying to add two functions to one button, first one will take me to following frame and the second one will stop the music that is playing
    I have this written already, the jump to following frame works but the stop function doesn't even though program still runs and no error messages come up....help
    import flash.events.MouseEvent;
    import flash.media.Sound;
    import flash.media.SoundChannel;
    stop();
    //Create a new sound variable "theSunSound" from the class name given
    //to the audio file in the library "theSunSoundFile"
    var theSunSound: theSunSoundFile = new theSunSoundFile();
    //Play variable
    theSunSound.play();
    btnGoodJob.addEventListener(MouseEvent.CLICK, bGoodJob);
    function bGoodJob(event: MouseEvent): void {
      gotoAndStop("Start");
    //Create a new sound channel variable "theSunSoundChannel"
    /*This is only requred if the sound will do more than just play
    ie: stop, pause, etc...*/
    var theSunSoundChannel:SoundChannel = new SoundChannel();
    /*Create a new variable to store the position of the "playback head"
    of "theSunSoundChannel"*/
    var theSunSoundPausePosition:Number = new Number();
    //Set the "playback head" time to 0
    theSunSoundPausePosition = 0;
    /*Create a Boolean variable called "theSunSoundPlaying"
    this will change from true to false depending on if
    "theSunSoundChannel" is playing*/
    var theSunSoundPlaying:Boolean = false;
      //Stop playing the "theSunSoundChannel" variable
      theSunSoundChannel.stop();
      //Change "theSunSoundPlaying" Variable to false
      theSunSoundPlaying = false;
      /*Set the "theSunSoundPausePosition" to 0, this
      will reset "theSunSoundChannel" to play from beginning*/
      theSunSoundPausePosition = 0;

    Ok, here is what I have right now
    import flash.events.MouseEvent;
    import flash.media.Sound;
    import flash.media.SoundChannel;
    stop();
    //Create a new sound variable "theSunSound" from the class name given
    //to the audio file in the library "theSunSoundFile"
    var theSunSound: theSunSoundFile = new theSunSoundFile();
    //Create a new sound channel variable "theSunSoundChannel"
    /*This is only requred if the sound will do more than just play
    ie: stop, pause, etc...*/
    var theSunSoundChannel:SoundChannel = new SoundChannel();
    //Play variable
    theSunSound.play();
    btnGoodJob.addEventListener(MouseEvent.CLICK, bGoodJob);
    function bGoodJob(event: MouseEvent): void {
      gotoAndStop("Start");
      //Create a new sound channel variable "theSunSoundChannel"
    /*This is only requred if the sound will do more than just play
    ie: stop, pause, etc...*/
    var theSunSoundChannel = theSunSound.play();
    /*Create a new variable to store the position of the "playback head"
    of "theSunSoundChannel"*/
    var theSunSoundPausePosition:Number = new Number();
    //Set the "playback head" time to 0
    theSunSoundPausePosition = 0;
    /*Create a Boolean variable called "theSunSoundPlaying"
    this will change from true to false depending on if
    "theSunSoundChannel" is playing*/
    var theSunSoundPlaying:Boolean = false;
      //Stop playing the "theSunSoundChannel" variable
      theSunSoundChannel.stop();
      //Change "theSunSoundPlaying" Variable to false
      theSunSoundPlaying = false;
      /*Set the "theSunSoundPausePosition" to 0, this
      will reset "theSunSoundChannel" to play from beginning*/
      theSunSoundPausePosition = 0;

  • Mac extended desktop mirroring needing to 'split' the sound

    The setup is that I am using my iMac in one room (the study), and I am using airplay to extend the desktop so that my apple TV in the living room is used to play a movie for my parents to watch.
    The sound and video transfers just fine to the apple TV on 'desktop 2', but I was wanting to be able to play a seperate video on my imac, in the study. I can't seperate the sound. Even though the video is on 'desktop 1' on my iMac any video's sound on either screen will be played through the TV speakers as my System preferences only allow me to select 'iMac' or 'apple TV'
    Is there any way to 'split' the sound?

    ""Extended Desktop" and "Dual Display" mean the
    same thing..."
    Actually, they don't. "Dual Display" simply means
    that the computer can support two displays. "Extended
    Desktop" and "Desktop Mirroring" refer to the
    different modes in which the two displays can be
    used. "Extended Desktop" uses both screens as one
    large continuous desktop while "Mirroring" displays
    the same desktop image on both screens.
    O.K. I'm confused.
    Can the Macbook display extended desktop (one giant desktop with half on the laptop and half on an external monitor) or is it limited to just mirroring the same desktop on both displays?
    Thanks,
      Mac OS X (10.4.5)  

  • Need to stop the pop and Imap receive connectors to be able to start the pop and Imap services in Service Manager

    Hello All,
    I am hoping that someone else has run across this issue (may have started after CU5 was installed).
    Upon every reboot I have found that the "Microsoft Exchange IMAP4" and "Microsoft Exchange POP3" services in the service manager will not start... basic reason in the event viewer is that the ports are already in use.
    If I go into the ECP and disable my POP and Imap receive connectors I am able to then start the services.
    After the services are started I can then go back to ECP and enable the receive connectors again and everything is fine .
    Can anyone shed any light on this?
    Thanks in advance ;)
    Chris

    Hello Winnie,
    I bounced the Transport service tonight (adjusting spam filter levels)... so I was able to issue a stop and re-start of the IMAP4 and POP3 services in the service manager.
    I stopped both the IMAP4 and POP3 services in service manager.
    I issued the start of the services with PowerShell as requested:
    PS C:\Users\administrator.XXXXXXXX> Start-service MSExchangePOP3
    WARNING: Waiting for service 'Microsoft Exchange POP3 (MSExchangePOP3)' to start...
    WARNING: Waiting for service 'Microsoft Exchange POP3 (MSExchangePOP3)' to start...
    WARNING: Waiting for service 'Microsoft Exchange POP3 (MSExchangePOP3)' to start...
    Start-service : Failed to start service 'Microsoft Exchange POP3 (MSExchangePOP3)'.
    At line:1 char:1
    + Start-service MSExchangePOP3
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OpenError: (System.ServiceProcess.ServiceController:ServiceController) [Start-Service],
       ServiceCommandException
        + FullyQualifiedErrorId : StartServiceFailed,Microsoft.PowerShell.Commands.StartServiceCommand
    Then I first stopped the receive connector in ECP and issued the command:
    PS C:\Users\administrator.XXXXXXXX> Start-service MSExchangePOP3
    WARNING: Waiting for service 'Microsoft Exchange POP3 (MSExchangePOP3)' to start...
    WARNING: Waiting for service 'Microsoft Exchange POP3 (MSExchangePOP3
    With the receive connector disabled in ECP it was successfully started.... then I enabled the receive connector in ECP and all is fine now
    repeated the same with  IMAP4
    to recap....
    If I stop the IMAP4 and/or POP3 service in service manager, I must first disable the IMAP and/or POP receive connector in the ECP, then start the service in service manage.. and then finally go into ECP and enable the receive connector.
    Thanks,
    Chris
    Chris

  • How can I stop the sound of my camera?

    few weeks ago I bought a Nokia E65. I like my phone but I don't like the sound of camera while capturing the picture or recording some video clip. I dont know why the producers add this sutupid sound to the phones. Or why dont they add a selective option. How can I cancel this sound in my e65. It is making me nervous.

    04-Oct-200707:20 PM
    psychomania wrote:
    Let not turn this into yet another E90 argument thread
    No way!
    That was hardcore.
    I guess nokia should add this option and can make an aware statement not to take a pic where it is prohibited, that just does the job.
    What do y'all think?

Maybe you are looking for

  • Imac disk error after upgrade to 10.5.7

    Hi, I was wondering if anyone could help out, i've having some problems ever since i upgraded to the 10.5.7 Firstly background on my mac, prior to the upgrade i was at 10.5.4, and before this i have had a few kernel panic crashes and managed to fix t

  • I can't select Photoshop CC 2014 when using the "Open with" menu in Windows 7

    I have recently installed CC 2014, and uninstalled my CC version. When I go to a jpeg, or any image file in windows explorer, I right-click and "open with" and it isn't listed on my program list to open the file with. I click on "browse programs", fi

  • Webtogo in Pocket PC 2003

    I am new in this "little" world. I've read a lot of documents and tried to run a wetogo application in the pocketpc 2003 emulator, but i can not. I don't know if webtgo is supported in pocket pc 2003. Can anybody help me? Thanks

  • Table control vs grid control

    What is the difference between table control and ALV grid control?

  • Integration between CCM and UC520

    Hi All, We need to establish a connection between CCm release 4.0 and UC 520. configuration from CCM side: we configure a H323 gateway to go directly to UC520 configuration from UC side: it's a simple dial peer dial-peer voice 1000 voip destination-p