Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (100)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (10616)

  • Split list of videos to chunks by silence in Python

    27 mai 2020, par JohnPython

    I have a list of 500 videos that I want split into small chunks by single words.

    



    I was thinking to split it by short silences between words.

    



    Process output is lots of short videos each contains one word.

    



    It would be great if silence length would be adjustable so it can extract words by various talking speech.
Process will run in Google Colab notebook
I tried FFMPEG with no success.

    


  • avcodec/bitpacked : Add codec_tags list

    7 février 2020, par Michael Niedermayer
    avcodec/bitpacked : Add codec_tags list
    

    This should improve coverage

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/bitpacked.c
  • 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>&amp;1 |  grep -o -P "(?&lt;=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>&amp;1 | grep -o -P '(?&lt;=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
    • ..