Recherche avancée

Médias (91)

Autres articles (49)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (7053)

  • ffmpeg watermark video while uploading

    30 décembre 2019, par Ilia Sotirov

    I have a CMS system for uploading videos using ffmpeg, I cannot figure a way to watermark the videos every time I’m getting errors (video cannot play) or error encoding etc.
    The command for processing the videos is :

    $shell     = shell_exec("$ffmpeg_b -y -i $video_file_full_path -vcodec libx264 -preset {$pt->config->convert_speed} -filter:v scale=426:-2 -crf 26 $video_output_full_path_240 2>&1");

    I have tried this command also :

    $shell     = shell_exec("$ffmpeg_b -y -i $video_file_full_path -vcodec libx264 -preset {$pt->config->convert_speed} -filter:v scale=426:-2 -crf 26 -i watermark.png -filter_complex 'overlay=10:10' $video_output_full_path_240 2>&1");

    This not seems to work.. is there any way I can troubleshoot this ?

  • Recursively list video duration for all files in a directory

    20 août 2023, par Alistair Colling

    I want to list all the filenames and durations for each video in a folder. Currently I can only target files individually :

    



    ffmpeg -i intro_vid001.mp4 2>&1 | grep Duration

    



    Could someone suggest how I can print this out in the terminal or to a text file for every video file within a folder ?

    



    I have tried with a shell script but am very new to shell scripts.

    



    if [ -z $1 ];then echo Give target directory; exit 0;fi

find "$1" -depth -name ‘*’ | while read file ; do
directory=$(dirname "$file")
oldfilename=$(basename "$file")


echo oldfilename
#ffmpeg -i $directory/$oldfilename” -ab 320k “$directory/$newfilename.mp3″ null
ffmpeg -i "$directory/$oldfilename" 2>&1 | grep Duration | echo
#rm “$directory/$oldfilename”

done


    


  • Recursively list video duration for all files in a directory

    20 août 2014, par alidrongo

    I want to list all the filenames and durations for each video in a folder. Currently I can only target files individually :

    ffmpeg -i intro_vid001.mp4 2>&1 | grep Duration

    Could someone suggest how I can print this out in the terminal or to a text file for every video file within a folder ?

    I have tried with a shell script but am very new to shell scripts.

    if [ -z $1 ];then echo Give target directory; exit 0;fi

    find "$1" -depth -name ‘*’ | while read file ; do
    directory=$(dirname "$file")
    oldfilename=$(basename "$file")


    echo oldfilename
    #ffmpeg -i $directory/$oldfilename” -ab 320k “$directory/$newfilename.mp3″ null
    ffmpeg -i "$directory/$oldfilename" 2>&1 | grep Duration | echo
    #rm “$directory/$oldfilename”

    done