Recherche avancée

Médias (91)

Autres articles (92)

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

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version 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
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6335)

  • How to copy a file open from open dialog to other location in vb.net

    4 juillet 2017, par Silvia Fonseca

    I have start a new application that converts video to image and then image to gif
    every thing is ok if i put my video in side of the same folder but if i not put my video in the same folder of the project the ffmpeg its says no such file or directory. wen i click to chose my file with openfiledialog , how can i copy or move my chose video to the correct directory in this case C :\avitogifconverter

    I have try to move the file to other location but wen i try to move the file to a different location its say i can not find the directory but the directory exist. what i have miss here this is the code

    This is my code

    Imports System.Diagnostics
    Imports System.ComponentModel
    Imports System
    Imports System.IO
    Imports System.IO.Compression
    Imports System.Windows.Forms
    Imports System.Net

    Public Class Form1
    Dim fpsx = 10
    Dim video = ""
    Dim startInfo As New ProcessStartInfo("ffmpeg.exe")
    Dim frame As Long 'individual frames
    Dim tempdir As String = "C:\avitogifconverter\" ' images temp directory
    Dim DestPath As String = "C:\avitogifconverter\"
    Public Declare Auto Function FindWindowNullClassName Lib "user32.dll" Alias "FindWindow" (ByVal lpClassname As Integer, ByVal lpWindownName As String) As Integer
    Dim Counter As Integer = 0

    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
       My.Computer.FileSystem.CreateDirectory(tempdir)
       TextBox1.Text = "exp:-->video.avi or webm or flv"
       TextBox1.Clear()
       TextBox2.Text = fpsx


    End Sub


    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
       fpsx = TextBox2.Text
       TextBox2.Text = fpsx

       Dim p As Process = Process.Start("cmd", "/k ffmpeg.exe -i " + TextBox1.Text + " -framerate 5/1 -filter:v fps=" + TextBox2.Text + " C:\avitogifconverter\out%02d.jpg")
       p.WaitForExit()

       If p.HasExited Then
           MsgBox("The Extraction Are Finish...")
       End If

    End Sub

    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick

    End Sub

    Private Sub Button2_Click(sender As Object, e As EventArgs)

    End Sub

    Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click


       If (OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK) Then
           'TextBox1.Text = OpenFileDialog1.FileName
           'TextBox1.Text = System.IO.Path.GetFileName(OpenFileDialog1.FileName)
           TextBox1.Text = System.IO.Path.GetDirectoryName(OpenFileDialog1.FileName)
           Dim newdialog As New OpenFileDialog()
           If newdialog.ShowDialog() = DialogResult.OK Then
               System.IO.File.Copy(newdialog.FileName, tempdir)
               MessageBox.Show(System.IO.Path.GetDirectoryName(newdialog.FileName) & "\" & System.IO.Path.GetFileName(newdialog.FileName))
           End If
       End If
       If TextBox1.Text = Nothing Then
           Return
       End If
       If TextBox1.Text <> Nothing Then
           'My.Computer.FileSystem.CopyFile(TextBox1.Text, DestPath)
       End If

    End Sub

    Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
       Dim args As String 'declare args
       args = " -i C:\avitogifconverter\out%02d.jpg -r 10 C:\avitogifconverter\out.gif "
       'args = " -i C:\avitogifconverter\out%02d.jpg -c:v libx264 -r 30 -pix_fmt yuv420p C:\avitogifconverter\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"

       MsgBox("Done")
       Dim directoryName As String = "C:\avitogifconverter\"
       For Each deleteFile In Directory.GetFiles(directoryName, "*.jpg", SearchOption.TopDirectoryOnly)
           File.Delete(deleteFile)
       Next

       'IO.Directory.Delete(tempdir, True)
    End Sub

    Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
       Form2.Show()

    End Sub
    End Class
  • How to let ffmpeg download partial m3u8 video without download the full ones ?

    15 octobre 2018, par 3142 maple

    I want to get a video from a m3u8 stream from range : 21:24 22:54.
    I found a answer at https://superuser.com/questions/758943/ffmpeg-cut-for-time-range , and it said I can use -ss 00:21:24.00 -t 90 to cut it.

    But I found that ffmpeg is actually download the whole video until 00:21:24.00 rather that just download 21:24 22:54 .
    How can I let it just download the 90 seconds I want ?

    The command I came up :

    ffmpeg -i "M3U8URL" -acodec copy -vcodec copy -ss 00:21:24.00 -t 90 output.mp4
  • Added the HTML5 download attribute to the file download links.

    13 février 2012, par Sebastian Tschan

    m index.html m test/index.html Added the HTML5 download attribute to the file download links.