Recherche avancée

Médias (0)

Mot : - Tags -/xml-rpc

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 (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (18988)

  • 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
  • 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


    


  • 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