public IEnumerator ConvertCustomMusic() { Debug.Log("[CSLMusic] Converting custom and music pack music ..."); if (ModOptions.PlayWithoutConvert) { Debug.Log("[CSLMusic] Converter disabled. CSLMusicMod will play ogg stream directly."); } else { //Collect all to convert Dictionary <String, String> conversiontasks = new Dictionary <string, string>(); foreach (String folder in ModOptions.CustomMusicFolders) { ConvertCustomMusic_AddConversionTasks(folder, conversiontasks, false); } foreach (String folder in ModOptions.ModdedMusicSourceFolders) { ConvertCustomMusic_AddConversionTasks(folder, conversiontasks, true); } //Convert foreach (KeyValuePair <String, String> task in conversiontasks) { String srcfile = task.Key; String dstfile = task.Value; if (ModOptions.SupportedNonRawFileFormats.Contains(Path.GetExtension(srcfile))) { if (!File.Exists(dstfile)) { Debug.Log("[CSLMusic] To convert: " + srcfile + " -> " + dstfile); AudioFormatHelper.ConvertOggToRAW(srcfile, dstfile); yield return(null); } else { Debug.Log("[CSLMusic] Not converting " + srcfile + " to " + dstfile); } } } } //Set/unset RemoveUnsubscribedConvertedModpackMusic(); }
/// <summary> /// Record a Call /// </summary> /// <param name="CreateRecordCallInput">Object containing request parameters</param> /// <return>Returns the string response from the API call</return> public async Task <string> CreateRecordCallAsync(CreateRecordCallInput input) { //validating required parameters if (null == input.CallSid) { throw new ArgumentNullException("callSid", "The property \"CallSid\" in the input object cannot be null."); } //the base uri for api requestss string _baseUri = Configuration.GetBaseURI(); //prepare query string for API call StringBuilder _queryBuilder = new StringBuilder(_baseUri); _queryBuilder.Append("/calls/recordcalls.{ResponseType}"); //process optional template parameters APIHelper.AppendUrlWithTemplateParameters(_queryBuilder, new Dictionary <string, object>() { { "ResponseType", input.ResponseType } }); //validate and preprocess url string _queryUrl = APIHelper.CleanUrl(_queryBuilder); //append request with appropriate headers and parameters var _headers = new Dictionary <string, string>() { { "user-agent", "message360-api" } }; //append form/field parameters var _fields = new Dictionary <string, object>() { { "CallSid", input.CallSid }, { "Record", input.Record }, { "Direction", (input.Direction.HasValue) ? DirectionHelper.ToValue(input.Direction.Value) : null }, { "TimeLimit", input.TimeLimit }, { "CallBackUrl", input.CallBackUrl }, { "Fileformat", (input.Fileformat.HasValue) ? AudioFormatHelper.ToValue(input.Fileformat.Value) : null } }; //prepare the API call request to fetch the response HttpRequest _request = ClientInstance.Post(_queryUrl, _headers, _fields, Configuration.BasicAuthUserName, Configuration.BasicAuthPassword); //invoke request and get response HttpStringResponse _response = (HttpStringResponse)await ClientInstance.ExecuteAsStringAsync(_request).ConfigureAwait(false); HttpContext _context = new HttpContext(_request, _response); //handle errors defined at the API level base.ValidateResponse(_response, _context); try { return(_response.Body); } catch (Exception _ex) { throw new APIException("Failed to parse the response: " + _ex.Message, _context); } }