Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (9054)

  • avcodec/bsf : switch to av_get_token to parse bsf list string

    3 juillet 2021, par Gyan Doshi
    avcodec/bsf : switch to av_get_token to parse bsf list string
    

    The recently added setts bsf makes use of the eval API whose
    expressions can contain commas. The existing parsing in
    av_bsf_list_parse_str() uses av_strtok to naively split
    the string at commas, thus preventing the use of setts filter
    with expressions containing commas.

    av_get_token can work with escaped commas, allowing full use of setts.

    • [DH] libavcodec/bsf.c
  • 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