Results 1 to 2 of 2

Thread: How to show file name without extention

  1. #1

    Default How to show file name without extention

    Is there a way i can show the file name without extension in import folder form?

    I know it calls {$video_name} for the full name but i cant seem to find a way to show it without extension.

    Reason for this is that i have over 5000 videos to import and all are named as there title so importing would be 100 times faster if this could be done.

    my form would be like this:

    Code:
        <div>        <label for="video_user">Add Video to User:</label>
            <input maxlength="100" size="40" name="video_user" value="sporn" />
        </div>
    
    
    
    
        <div>
            <label for="video_title">Title:</label>
            <input maxlength="60" size="40" name="video_title" value="{$video_name-ext}" />
         </div>
    
    
        <div>
            <label for="video_description">Description:</label>                  
            <textarea name="video_description" rows="4" cols="50">{$video_name-ext}</textarea>
        </div>
    
    
        <div>
            <label for="video_keywords">Tags:</label>
            <input maxlength="120" size="40" name="video_keywords" value="{$video_name-ext}" />
        </div>
    All i would need to do is select channels :)

    Lazy i know but its going to take a long time to import the 5000 videos i have in total to add.

    Many thanks

  2. #2

    Default

    No one know of a way?

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •