Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (79)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (10295)

  • How can we transcode live rtmp stream to live hls stream using ffmpeg ?

    24 décembre 2022, par Kiran

    I am trying to convert a live rtmp stream to hls stream on real time.

    


    I got some idea after reading

    


    http://sonnati.wordpress.com/2011/08/30/ffmpeg-%E2%80%93-the-swiss-army-knife-of-internet-streaming-%E2%80%93-part-iv/

    


    i am able to convert the live rtmp stream to hls but not at run time. when i run the command and test for any hsl files (.m3u8 and .ts) i am not able to see but when i interrupt the command and check there i get the hls files as required.

    


    I searched on google for solution but not able to get proper answer.

    


  • Revision dc08b20405 : Add comments for control VP9E_SET_TUNE_CONTENT Change-Id : If1fb5d9f1545cb9753ee

    14 janvier 2015, par Yaowu Xu

    Changed Paths :
     Modify /vpx/vp8cx.h



    Add comments for control VP9E_SET_TUNE_CONTENT

    Change-Id : If1fb5d9f1545cb9753eeda22e699b1ab778452b4

  • VB.NET : How to maintain main form control during loops in other sub ?

    5 février 2015, par Zed Machine

    I have a program with only one form.
    By pressing a button it starts a ffmpeg conversion.

    In the main form, in textboxes, ffmpeg stats are outputted. This is possible by taking StandardError output from ffmpeg.

    Public Sub Console()
           Dim Process As New Process

           Process.StartInfo.UseShellExecute = False
           Process.StartInfo.RedirectStandardError = True
           Process.StartInfo.RedirectStandardOutput = True
           Process.StartInfo.FileName = current_ffmpeg_path
           Process.StartInfo.Arguments = input_params
           Process.StartInfo.CreateNoWindow = True
           Process.Start()

           Dim ffmpeg_stats_output As System.IO.StreamReader = Process.StandardError

           Do While Process.HasExited = False
           [update all main form textboxes by taking input string from ffmpeg and elaborate it]
           Loop
    End Sub

    The problem is that while this loop is executed the textboxes and progress bar are updated but the main form cannot be modified. There is in fact no control at all by user. So if I want to make a button to stop/pause ffmpeg in main form this cannot be pressed as anything else on the main form.

    there is a way to maintain loops inside other Sub without loose control of main form while they’re running ?

    I tried to fix it by calling another dialog form with textboxes and progress bar. But even this form loose completely control until the process is finished.

    To send pause/stop conversion to ffmpeg (that runs without a window) is it correct use :

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
    SendKeys.Send("q")
    SendKeys.Send("^s")
    End Sub

    or must be specified that this key is sent to the current running Process ?