Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (63)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (9281)

  • ffmpeg command line for converting flv to mp3 using vbr @128

    6 mars 2016, par user1910852

    I have extensively searched google and red through the FFmpeg documentation was hoping some one with a bit more experience could help.

  • Run selected line in notepad++ console

    9 mars 2016, par Mpondomise

    This might seem a bit too obvious but I am stuck with it anyway.
    I am editing an ffmpeg code in notepad++ and I want to run the selected line of code directly in notepad++ console (nppexec plugin console).
    say, I have four lines of code, and I want to run only the second line (selected line) :

    enter image description here

    currently, I am coping the line and pasting it in the console and hitting enter. I know it is very noobie !
    Please help to achieve this with a shortcut or something.

  • Create directory list where each line in list consists of mp3 file name and mp3 duration

    14 octobre 2015, par Kes

    I wish to produce a list from the directory of the mp3 file names in the directory and the playing duration of each file.

    The below command produces a list of mp3 files in the directory

    for name in *.mp3; do ffmpeg -i "$name" 2>&1 |  grep -o -P "(?<=Input #0, mp3, from ').*(?=.mp3':)"  ; done;

    The below command produces a list of the duration of each of the MP3 files

    for name in *.mp3; do ffmpeg -i "$name" 2>&1 | grep -o -P '(?<=Duration: 00:).*(?=.[0-9]{2}, start)'  ; done;

    I need to combine the output of both these commands into one output showing

    • mm:ss filename
    • mm:ss filename
    • mm:ss filename
    • mm:ss filename
    • mm:ss filename
    • mm:ss filename
    • ..