Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (61)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (8861)

  • Split audio file into multiple files using ffmpeg on macOS

    3 avril 2018, par Tony Hegr

    My idea was to save some time and split long audio file into multiple audio files and reading the data (startTime, endTime, artist, title) from a text file.
    Using terminal on MacOS (UNIX) and ffmpeg (audio).

    Input put file example with 3 lines :

    00:00 - 06:16 - art - tit
    06:16 - 09:22 - arti - titl
    09:22 - 13:13 - artist - title

    My unix code, shell file : "split.command"

    inputFileName=audiofile
    input=test.txt


    while IFS= read -r var
    do

    startTime=$(echo "$var" | cut -f1 -d"-")
    endTime=$(echo "$var" | cut -f2 -d"-")
    artist=$(echo "$var" | cut -f3 -d"-")
    title=$(echo "$var" | cut -f4 -d"-")

    echo ffmpeg -i ~/Downloads/$inputFileName.mp3 -metadata artist="$artist" -metadata title="$title" -ss $startTime -to $endTime -acodec copy "$title".mp3 -vsync 2

    wait

    done < "$input"

    When I ECHO it, everything looks fine.

    $ sh split.command
    ffmpeg -i /Users/tony/Downloads/audiofile.mp3 -metadata artist= art  -metadata title= tit -ss 00:00 -to 06:16 -acodec copy  tit.mp3 -vsync 2
    ffmpeg -i /Users/tony/Downloads/audiofile.mp3 -metadata artist= arti  -metadata title= titl -ss 06:16 -to 09:22 -acodec copy  titl.mp3 -vsync 2
    ffmpeg -i /Users/tony/Downloads/audiofile.mp3 -metadata artist= artist  -metadata title= title -ss 09:22 -to 13:13 -acodec copy  title.mp3 -vsync 2

    When ECHO is deleted, it should work as command. The first audio is fine, the second throws an error, and the third work but has missing artwork .

    1st *works*
    2nd *error* Invalid duration specification for to: arti
    3rd *works but..* [mp3 @ 0x7ff7e1800000] No packets were sent for some of the attached pictures.
  • Revision 4048 : On peut choisir une série de médias à mettre en home par défaut et choisir ...

    26 septembre 2010, par kent1 — Log

    On peut choisir une série de médias à mettre en home par défaut et choisir leur tri maintenant ... On incrémente du coup

  • Anomalie #3162 : Moteur de recherche : combinaison d’un mot court et d’un mot avec accents ne reto...

    11 août 2014, par cedric -

    Le report de r19946 est tardivement fait par r21507, merci denisb !