Home
last modified time | relevance | path

Searched refs:tag_data (Results 1 – 14 of 14) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dwrite.id3v1.php37 public $tag_data; variable in getid3_write_id3v1
74 …$this->tag_data['track_number'] = (isset($this->tag_data['track_number']) ? $this->tag_data['track…
77 (isset($this->tag_data['title'] ) ? $this->tag_data['title'] : ''),
78 (isset($this->tag_data['artist'] ) ? $this->tag_data['artist'] : ''),
79 (isset($this->tag_data['album'] ) ? $this->tag_data['album'] : ''),
80 (isset($this->tag_data['year'] ) ? $this->tag_data['year'] : ''),
81 (isset($this->tag_data['genreid'] ) ? $this->tag_data['genreid'] : ''),
82 (isset($this->tag_data['comment'] ) ? $this->tag_data['comment'] : ''),
83 (isset($this->tag_data['track_number']) ? $this->tag_data['track_number'] : ''));
117 $this->tag_data = $id3v1data;
H A Dwrite.php69 public $tag_data = array(array()); variable in getid3_writetags
288 if (!is_array($this->tag_data)) {
293 foreach ($this->tag_data as $tag_key => $tag_array) {
295 $this->tag_data[strtoupper($tag_key)] = $this->tag_data[$tag_key];
296 unset($this->tag_data[$tag_key]);
312 if (isset($this->tag_data['TRACK']) && !isset($this->tag_data['TRACK_NUMBER'])) {
313 $this->tag_data['TRACK_NUMBER'] = $this->tag_data['TRACK'];
314 unset($this->tag_data['TRACK']);
495 * @param array $tag_data
549 if (!empty($this->tag_data['GENRE'])) {
[all …]
H A Dwrite.real.php27 public $tag_data = array(); variable in getid3_write_real
236 foreach ($this->tag_data as $key => $value) {
238 $this->tag_data[$key] = substr($value, 0, 65535);
243 …chunk .= getid3_lib::BigEndian2String((!empty($this->tag_data['title']) ? strlen($this->tag_da…
244 $CONTchunk .= (!empty($this->tag_data['title']) ? strlen($this->tag_data['title']) : '');
246 …chunk .= getid3_lib::BigEndian2String((!empty($this->tag_data['artist']) ? strlen($this->tag_da…
247 $CONTchunk .= (!empty($this->tag_data['artist']) ? strlen($this->tag_data['artist']) : '');
249 …chunk .= getid3_lib::BigEndian2String((!empty($this->tag_data['copyright']) ? strlen($this->tag_da…
250 $CONTchunk .= (!empty($this->tag_data['copyright']) ? strlen($this->tag_data['copyright']) : '');
252 …chunk .= getid3_lib::BigEndian2String((!empty($this->tag_data['comment']) ? strlen($this->tag_da…
[all …]
H A Dwrite.metaflac.php28 public $tag_data; variable in getid3_write_metaflac
62 if (!empty($this->tag_data['ATTACHED_PICTURE'])) {
63 foreach ($this->tag_data['ATTACHED_PICTURE'] as $key => $picturedetails) {
80 unset($this->tag_data['ATTACHED_PICTURE']);
88 foreach ($this->tag_data as $key => $value) {
H A Dwrite.vorbiscomment.php29 public $tag_data; variable in getid3_write_vorbiscomment
62 foreach ($this->tag_data as $key => $value) {
128 $this->tag_data = array(array());
H A Dwrite.apetag.php32 public $tag_data; variable in getid3_write_apetag
81 …eInfo['ape']['items'][strtolower($rg_key)]['data'][0]) && !isset($this->tag_data[strtoupper($rg_ke…
82 …$this->tag_data[strtoupper($rg_key)][0] = $ThisFileInfo['ape']['items'][strtolower($rg_key)]['data…
166 if (!is_array($this->tag_data)) {
169 foreach ($this->tag_data as $key => $arrayofvalues) {
H A Dwrite.lyrics3.php28 public $tag_data; variable in getid3_write_lyrics3
H A Dwrite.id3v2.php32 public $tag_data; variable in getid3_write_id3v2
119 $this->tag_data = $this->array_join_merge($OldThisFileInfo['id3v2'], $this->tag_data);
1646 if (is_array($this->tag_data)) {
1647 foreach ($this->tag_data as $frame_name => $frame_rawinputdata) {
1654 …ay_key_exists('encodingid', $source_data_array) && array_key_exists('encoding', $this->tag_data)) {
1655 …$source_data_array['description'] = getid3_lib::iconv_fallback($this->tag_data['encoding'], $sourc…
/plugin/typography/syntax/
H A Dbase.php87 $tag_data = $this->styler->parse_inlineCSS($params);
89 return $data = array($state, $tag_data);
121 list($state, $tag_data) = $data;
129 $renderer->doc .= '<span'.$this->styler->build_attributes($tag_data).'>';
H A Dsmallcaps.php45 $tag_data = $this->styler->parse_inlineCSS($params);
47 return $data = array($state, $tag_data);
/plugin/typography/helper/
H A Dodt.php17 list($state, $tag_data) = $data;
27 foreach ($tag_data['declarations'] as $name => $value) {
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.simple.write.php51 $tagwriter->tag_data = $TagData;
H A Ddemo.write.php94 $tagwriter->tag_data = $TagData;
H A Ddemo.mysqli.php333 $tagwriter->tag_data = $SourceArray;