Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (55)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (9320)

  • tools/target_dec_fuzzer : Use codec_tags list

    29 décembre 2019, par Michael Niedermayer
    tools/target_dec_fuzzer : Use codec_tags list
    

    This should make it much quicker for the fuzzer to test
    real relevant codec_tags

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tools/target_dec_fuzzer.c
  • 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 :

    &#xA;

    mp3s

    &#xA;

    &#xA;file &#x27;path/to/audio1.mp3&#x27;&#xA;file &#x27;path/to/audio2.mp3&#x27;&#xA;file &#x27;path/to/audio3.mp3&#x27;&#xA;file &#x27;path/to/audio4.mp3&#x27;&#xA;...&#xA;

    &#xA;

    subtitles

    &#xA;

    file &#x27;path/to/audio1.srt&#x27;&#xA;file &#x27;path/to/audio2.srt&#x27;&#xA;file &#x27;path/to/audio3.srt&#x27;&#xA;file &#x27;path/to/audio4.srt&#x27;&#xA;...&#xA;

    &#xA;

    And of course the video background as input

    &#xA;

    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.

    &#xA;

    With some more digging I come up with this code :

    &#xA;

    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&#xA;

    &#xA;

    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

    &#xA;

    [Parsed_subtitles_1 @ 0xaaaacf52fb60]&#xA;No filename provided!&#xA;[AVFilterGraph @ 0xaaaacf5f6370] Error initializing filter &#x27;subtitles&#x27;&#xA;Error initializing complex filters.&#xA;Invalid argument&#xA;

    &#xA;

    I re-checked subtitleList.txt It seems right.

    &#xA;