Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (73)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8691)

  • how to generate multiple bitrate output hls files from live rtsp stream

    10 février 2015, par prashanta

    I am gerating single bitrate live hls content from live rtsp stream . I am using the following command

    ffmpeg -v verbose -i rtsp://127.0.0.1:8080/test.sdp -vcodec libx264 -acodec aac -ac 1 -strict -2 -crf 18 -profile:v baseline -maxrate 400k -bufsize 1835k -pix_fmt yuv420p -flags -global_header -hls_time 10 -hls_list_size 3 -hls_wrap 4 -hls_flags delete_segments -start_number 1 /usr/local/apache-tomcat-7.0.53/webapps/ROOT/hls/index1.m3u8

    How can I modify the above FFmpeg command to generate multiple bitrate output content ? Please help me.

  • Deal with dropped frames in live stream

    8 juillet 2020, par arunk2

    We encode a stream (RTMP) into HLS with ffmpeg. During the conversion we observe a lot of variation in fps. We could trace it back to the 'frames' dropped at source (during video upload from tools like OBS). This introduces a bad CX during playback of generated HLS - like buffering/getting-stuck.

    


    Question :
What is the typical way to handle dropped frames in live stream graciously - like duplicating previous frames or other means ? Pointers to related resources ?

    


  • Encoding rawframes to raw h264 live [closed]

    25 juillet 2024, par Enry Frafranci

    I'm trying to make an application that generates an mp4 stream live in node.js.

    


    So far I've successfully got the stream part working with static pre-encoded raw h264 files, then passing them trough jmuxer, streaming it to an express endpoint.
Now I would like to generate live the h264 stream based on a canvas that gets drawn live.
I've managed to use the canvas module to do that with no issue, but problems arise when trying to compress and encode the canvas output with ffmpeg. This is the command that I'm running, while piping in the raw video frames, and expecting on the pipe output the raw h264 stream :

    


    ffmpeg -f rawvideo -r 30 -pixel_format rgb24 -video_size 640x480 -i pipe:0 -c:v libx264 -pixel_format yuv420p -preset fast -f h264_mp4toannexb pipe:1


    


    But this is the error message I receive instead :

    


    Output format h264_mp4toannexb is not available


    


    I know for sure my frame generation works correctly and ffmpeg accepts it because a previous project of mine used basically the same exact code, with the exception of the output being a simple mp4 file and not a stream.

    


    Any help to figure out what's a good solution is appreciated !

    


    Thanks

    


    Rico