Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (66)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • 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 (10435)

  • Evolution #2835 (Nouveau) : Liste des travaux" ça fait penser à "todo-list

    29 août 2012, par b b

    Lu sur IRC : fil > "Liste des travaux" ça fait penser à "todo-list", donc la liste des trucs que je suis censé faire dans le site jobs / travaux, ouè on peut certainement trouver mieux tâches tâches routinières ha ben, "routines", non ? tâches de fond, plus (...)

  • Ffmpeg hardcode a list of subtitles to a video

    23 décembre 2022, par TheRedM

    I couldn't figure out how to stream a list of subtitles to an rtmp server, the idea is I have a list of mp3 files and a list of subtitles, each mp3 has its own subtitle, what i was trying to do is stream both lists and a video background (with the subtitles hardcoded to the video background) i tried a bunch of options, I managed to output them as an mp4 video with the subtitles softcoded but I couldn't figure out how to stream them with the subtitles hardcoded, my lists goes as follow :

    


    mp3s

    


    
file 'path/to/audio1.mp3'
file 'path/to/audio2.mp3'
file 'path/to/audio3.mp3'
file 'path/to/audio4.mp3'
...


    


    subtitles

    


    file 'path/to/audio1.srt'
file 'path/to/audio2.srt'
file 'path/to/audio3.srt'
file 'path/to/audio4.srt'
...


    


    And of course the video background as input

    


    I was thinking about using a while loop but that's going to call ffmpeg for every mp3 which is inconvenient for a live stream.

    


    With some more digging I come up with this code :

    


    ffmpeg -f concat -safe 0 -i audioList.txt -f concat -safe 0 -i subtitleList.txt -i background/video.mp4 -filter_complex "[1:v][0:a]overlay[v1];[v1][2]subtitles[v2]" -map "[v2]" -c:a aac -b:a 128k -c:v h264 -b:v 3000k -f flv rtmp://stream/key


    


    I'm not sure if the subtitles will be hardcoded because the script didn't work at all, it seems right to me but i'm getting this error

    


    [Parsed_subtitles_1 @ 0xaaaacf52fb60]
No filename provided!
[AVFilterGraph @ 0xaaaacf5f6370] Error initializing filter 'subtitles'
Error initializing complex filters.
Invalid argument


    


    I re-checked subtitleList.txt It seems right.

    


  • avfilter/vf_format : allow empty pix_fmts list

    25 octobre 2023, par Niklas Haas
    avfilter/vf_format : allow empty pix_fmts list
    

    Which will impose no restriction. This makes sense when using e.g.
    `color_ranges=pc` to limit the color range, without also limiting the
    pixel format.

    • [DH] libavfilter/vf_format.c