I think I did it. 
I add line in listing_table.php
</th>
          <th class="link_to_video title" align="center">
            <?php echo JText::_( 'VIDEO' );?>
          </th>
          <th class="product_genre title" align="center">
            <?php echo JText::_( 'GENRE' );?>
          </th>and then:
<?php if ($this->config->get('show_code')){ ?>
            <td class="link_to_video_row">
              <?php if($this->params->get('link_to_product_page',1)){ ?>
                <a href="<?php echo $link;?>">
              <?php }
              echo $this->row->link_to_video;
              if($this->params->get('link_to_product_page',1)){ ?>
                </a>
              <?php } ?>
            </td>
          <?php } ?>
    <?php if ($this->config->get('show_code')){ ?>
            <td class="product_genre_row">
              <?php if($this->params->get('link_to_product_page',1)){ ?>
                <a href="<?php echo $link;?>">
              <?php }
              echo $this->row->product_genre;
              if($this->params->get('link_to_product_page',1)){ ?>
                </a>
              <?php } ?>
            </td>
          <?php } ?> 
Only I need to change <?php if ($this->config->get('show_code')){ ?> for something else or remove.
and I need remove link to product page from link to video (not working, no need it)
and change in Genre to link to my Genre Category.
but I doing little step by step.
Nice to have software with many possibility .