Recherche avancée

Médias (91)

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (13957)

  • FFmpeg Live Stream - Loop Video ?

    28 septembre 2019, par Dread-Eye

    I am trying to stream a video loop to justin.tv using FFmpeg ? I have managed to loop an image sequence and combine it with line in audio :

    ffmpeg -loop 1 -i imageSequence%04d.jpg -f alsa -ac 2 -ar 22050 -ab 64k \
      -i pulse -acodec adpcm_swf -r 10 -vcodec flv \
      -f flv rtmp ://live.justin.tv/app/
    

    Is it possible to do this with a video file ?

  • FFmpeg Live Stream - Loop Video ?

    15 décembre 2015, par Dread-Eye

    I am trying to stream a video loop to justin.tv using FFmpeg ? I have managed to loop an image sequence and combine it with line in audio :

    ffmpeg -loop 1 -i imageSequence%04d.jpg -f alsa -ac 2 -ar 22050 -ab 64k \
      -i pulse -acodec adpcm_swf -r 10 -vcodec flv \
      -f flv rtmp ://live.justin.tv/app/
    

    Is it possible to do this with a video file ?

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