Guest User

Untitled

a guest
Jan 20th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. MediaElement sound = new MediaElement();
  2. Uri sourceSound = new Uri("examplepage.com/getSound.php?animal=dog");
  3. sound.Source = sourceSound;
  4. sound.MediaFailed += sound_MediaFailed;
  5. try
  6. {
  7. System.Diagnostics.Debug.WriteLine(sourceSound.ToString());
  8. sound.Play();
  9. }
  10. catch (Exception)
  11. {
  12. System.Diagnostics.Debug.WriteLine("Can't play sound !");
  13. }
  14.  
  15. header('Content-Type: audio/mp3');
  16. $translatorObj = new HTTPTranslator();
  17. $strResponse = $translatorObj->curlRequest($url, $authHeader);
  18. echo $strResponse;
Add Comment
Please, Sign In to add comment