Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (83)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (11930)

  • ffmpeg - stream_loop mp3 + looping video (per track)

    5 mars 2023, par cYberSport91

    I'm using ffmpeg to create a livestream video playlist of a folder of mp3s and a folder of videos.

    



    I'd like everytime a new song comes on a new video loops until the next song.

    



    Initially I was using live-stream-radio which is perfect except how it's handled is after every track a new ffmpeg stream loop is initialized. And in a lot of clients this issues a stop command, and there's "dead space" between.

    



    My attempt was when creating the gif playlist text file (they were gifs but I converted to mp4), I set the duration for the duration of the corresponding track. The problem is the video plays once, and then freezes on the final frame until the next track.

    



    rm music.txt
rm gifs.txt
printf "ffconcat version 1.0\n" >> gifs.txt
printf "ffconcat version 1.0\n" >> music.txt
for i in {1..9}; do
  printf "file 'mp3/00%s.mp3'\n" $i >> music.txt
done

for i in {1..9}; do
  DURATION=$(ffmpeg -i mp3/00$i.mp3 2>&1 | awk '/Duration/ { print substr($2,0,length($2)-1) }')
  printf "file 'gif/00%s.mp4'\nduration %s\n" $i $DURATION >> gifs.txt
done

ffmpeg \
    -stream_loop -1 \
    -i gifs.txt \
    -i music.txt \
    -vcodec libx264 \
    -f flv "$URL"


    



    Any ideas here would be great.

    


  • avformat/matroskaenc : Ignore AttachedFiles for track limit

    27 novembre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Ignore AttachedFiles for track limit
    

    Attachments are streams in FFmpeg, but they are not tracks in Matroska.
    Yet they were counted when checking a limit for the number of tracks that
    the Matroska muxer imposes. This is unnecessary and has been changed.

    Also use unsigned variables for the variables denoting TrackNumbers as
    negative TrackNumbers are impossible.

    (The Matroska file format actually has practically no limit on the
    number of tracks and this is purely what our muxer supports. But even if
    this limit were removed/relaxed in the future, it still makes sense to
    use small TrackNumbers as this patch does, because greater numbers need
    more bytes to encode.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • FFmpeg : How can I loop a single frame of video to cover the length of audio track

    6 avril 2020, par John Bergqvist

    I have a VOB file holding an MPEG-2 video track with an AC-3 audio track. The video track of that VOB file consists of a single frame, which when played in a DVD player, holds that still frame until the audio track has finished.

    &#xA;&#xA;

    How can I (with FFMPEG ideally), loop that frame to make a "normal" video track that lasts for the length of the audio track, rather than just a single frame ?

    &#xA;&#xA;

    ffmpeg version N-91999-g148a21611d Copyright (c) 2000-2018 the FFmpeg developers&#xA;  built with gcc 8.2.1 (GCC) 20180813&#xA;  configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libmfx --enable-amf --enable-ffnvcodec --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth&#xA;  libavutil      56. 19.101 / 56. 19.101&#xA;  libavcodec     58. 30.100 / 58. 30.100&#xA;  libavformat    58. 18.102 / 58. 18.102&#xA;  libavdevice    58.  4.103 / 58.  4.103&#xA;  libavfilter     7. 32.100 /  7. 32.100&#xA;  libswscale      5.  2.100 /  5.  2.100&#xA;  libswresample   3.  2.100 /  3.  2.100&#xA;  libpostproc    55.  2.100 / 55.  2.100&#xA;Input #0, mpeg, from &#x27;.\SINGLEFRAME.VOB&#x27;:&#xA;  Duration: 00:00:47.94, start: 0.336711, bitrate: 439 kb/s&#xA;    Stream #0:0: Data: dvd_nav_packet&#xA;    Stream #0:1: Video: mpeg2video (Main), yuv420p(tv), 720x576 [SAR 16:15 DAR 4:3], 8000 kb/s, 25 tbr, 90k tbn, 50 tbc&#xA;    Stream #0:2: Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s&#xA;

    &#xA;