subtitleMemorize.StreamInfo.GetAttribute C# (CSharp) Метод

GetAttribute() публичный Метод

ffmpeg generates a lot of information about streams as a key-value pair like index:"7" codec_type:"attachment" ... This function returns the value for a key, or "null" if key was not found.
public GetAttribute ( String name ) : String
name String
Результат String
		public String GetAttribute(String name) {
			String ret = null;
			if(!m_attributeDictionary.TryGetValue(name, out ret)) return null;
			return ret;
		}