Recherche avancée

Médias (91)

Autres articles (44)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (6675)

  • vulkan_decode : port to the new queue family API

    11 août 2024, par Lynne
    vulkan_decode : port to the new queue family API
    
    • [DH] libavcodec/vulkan_decode.c
    • [DH] libavcodec/vulkan_video.c
    • [DH] libavcodec/vulkan_video.h
  • 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.
  • aac : Fix TNS decoding for the 512 sample window family.

    24 décembre 2013, par Alex Converse
    aac : Fix TNS decoding for the 512 sample window family.
    
    • [DBH] libavcodec/aacdec.c
    • [DBH] libavcodec/aactab.c
    • [DBH] libavcodec/aactab.h