Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (46)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (6430)

  • convert jpg to avi vb.net

    10 avril 2018, par bluemoon odd

    I try to convert my sequenced numbers photos jpg to output.mp4 or avi
    but my output file is empty
    the photos are renamed liked this out01.jpg , out02.jpg, etc. i have 10 frames (Photos)
    I have try with this code :

    Dim desk = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
       Dim args As String 'declare args
       'args = " -i C:\mediapubisert\out%03d.jpg -r 10 C:\mediapubisert\out.mp4 "
       args = " -i C:\mediapubisert\out%02d.jpg -c:v libx264 -r 30 -pix_fmt yuv420p C:\mediapubisert\out.mp4 "
       Dim proc As New Process
       Dim proci As New ProcessStartInfo
       proci.FileName = My.Application.Info.DirectoryPath & "\ffmpeg.exe"
       proci.Arguments = args
       proci.WindowStyle = ProcessWindowStyle.Hidden
       proci.CreateNoWindow = True
       proci.UseShellExecute = False
       proc.StartInfo = proci
       proc.Start()
       Do Until proc.HasExited = True
           Me.Text = "Saving"
       Loop
       Me.Text = "your video done"
       'My.Computer.FileSystem.CopyFile(TextBox1.Text, DestPath + TextBox1.Text)
       MsgBox("Done")
       Dim directoryName As String = "C:\mediapubisert\"
  • Converting jpg's to mp4 using FFmPy

    30 juin 2018, par Matt

    I have a file full of jpg images that I would like to convert into an mp4 video. I have managed to do this on the command line using

    cat path/to/pictures/%d.jpg | ffmpeg -f image2pipe -i - output.mp4

    However when I try and go about doing it via FFmPy :

    ff = ffmpy.FFmpeg(
    inputs={'path/to/pictures/%d.jpg': None},
    outputs={'output.mp4': None})

    ff.cmd
    ff.run()

    I will run into the error :

       FFRuntimeError: `ffmpeg -i path/to/pictures/1.jpg -f output.mp4` exited with status 1

    STDOUT:


    STDERR:

    I’m really not sure what the issue is here, any change I make results in the same error. Any help would be appreciated, thanks.

  • Can i use ffmpeg for commercial use [closed]

    28 janvier 2020, par kartik bansal

    I am planning of using ffmpeg on my web server where uploaded video files will use ffmpeg functionality. I am not sure if I can use it for commercial use.