| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- * Copyright 2009-2017 Alibaba Cloud All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #ifndef ALIBABACLOUD_LIVE_MODEL_ADDCUSTOMLIVESTREAMTRANSCODEREQUEST_H_
- #define ALIBABACLOUD_LIVE_MODEL_ADDCUSTOMLIVESTREAMTRANSCODEREQUEST_H_
- #include <alibabacloud/live/LiveExport.h>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <string>
- #include <vector>
- #include <map>
- namespace AlibabaCloud {
- namespace Live {
- namespace Model {
- class ALIBABACLOUD_LIVE_EXPORT AddCustomLiveStreamTranscodeRequest : public RpcServiceRequest {
- public:
- AddCustomLiveStreamTranscodeRequest();
- ~AddCustomLiveStreamTranscodeRequest();
- std::string getResWithSource() const;
- void setResWithSource(const std::string &resWithSource);
- std::string getGop() const;
- void setGop(const std::string &gop);
- std::string getAudioCodec() const;
- void setAudioCodec(const std::string &audioCodec);
- std::string getKmsUID() const;
- void setKmsUID(const std::string &kmsUID);
- int getHeight() const;
- void setHeight(int height);
- std::string getApp() const;
- void setApp(const std::string &app);
- int getProfile() const;
- void setProfile(int profile);
- long getOwnerId() const;
- void setOwnerId(long ownerId);
- std::string getExtWithSource() const;
- void setExtWithSource(const std::string &extWithSource);
- std::string getBitrateWithSource() const;
- void setBitrateWithSource(const std::string &bitrateWithSource);
- std::string getDomain() const;
- void setDomain(const std::string &domain);
- std::string get_Template() const;
- void set_Template(const std::string &_template);
- std::string getLazy() const;
- void setLazy(const std::string &lazy);
- std::string getKmsKeyExpireInterval() const;
- void setKmsKeyExpireInterval(const std::string &kmsKeyExpireInterval);
- std::string getTemplateType() const;
- void setTemplateType(const std::string &templateType);
- std::string getAudioProfile() const;
- void setAudioProfile(const std::string &audioProfile);
- std::string getEncryptParameters() const;
- void setEncryptParameters(const std::string &encryptParameters);
- int getAudioChannelNum() const;
- void setAudioChannelNum(int audioChannelNum);
- int getFPS() const;
- void setFPS(int fPS);
- int getAudioRate() const;
- void setAudioRate(int audioRate);
- std::string getFpsWithSource() const;
- void setFpsWithSource(const std::string &fpsWithSource);
- int getAudioBitrate() const;
- void setAudioBitrate(int audioBitrate);
- int getWidth() const;
- void setWidth(int width);
- int getVideoBitrate() const;
- void setVideoBitrate(int videoBitrate);
- std::string getKmsKeyID() const;
- void setKmsKeyID(const std::string &kmsKeyID);
- private:
- std::string resWithSource_;
- std::string gop_;
- std::string audioCodec_;
- std::string kmsUID_;
- int height_;
- std::string app_;
- int profile_;
- long ownerId_;
- std::string extWithSource_;
- std::string bitrateWithSource_;
- std::string domain_;
- std::string _template_;
- std::string lazy_;
- std::string kmsKeyExpireInterval_;
- std::string templateType_;
- std::string audioProfile_;
- std::string encryptParameters_;
- int audioChannelNum_;
- int fPS_;
- int audioRate_;
- std::string fpsWithSource_;
- int audioBitrate_;
- int width_;
- int videoBitrate_;
- std::string kmsKeyID_;
- };
- } // namespace Model
- } // namespace Live
- } // namespace AlibabaCloud
- #endif // !ALIBABACLOUD_LIVE_MODEL_ADDCUSTOMLIVESTREAMTRANSCODEREQUEST_H_
|