package com.fdkk.fdkkmeta.util; import cn.hutool.core.util.URLUtil; import com.fdkk.fdkkmeta.config.TrtcConfig; import com.fdkk.fdkkmeta.dto.PushDto; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.nio.charset.Charset; import java.util.HashMap; import java.util.Map; /** * @author Xiewj * @date 2022/3/29 */ @Component public class TrtcUtil { @Autowired TrtcConfig trtcConfig; public String getPushURl(PushDto dto){ return trtcConfig.getRtmpHost()+dto.getRoomId(); } }