subtitleMemorize.StreamInfo.GetAttribute C# (CSharp) Method

GetAttribute() public method

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
return String
		public String GetAttribute(String name) {
			String ret = null;
			if(!m_attributeDictionary.TryGetValue(name, out ret)) return null;
			return ret;
		}