Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (98)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (10040)

  • FFMpeg Image2Pipe VB.net

    17 février 2019, par Zakir_SZH

    i m trying to pipe image from my code to ffmpeg.. i am using flowing code :

    but it does not working, produced video is not playable :(

       Dim proc As Process = New Process()
       Dim objStream As System.IO.Stream
       proc.StartInfo.FileName = strAPPPath & "\ffmpeg.exe"
       proc.StartInfo.Arguments = "-f image2pipe -i pipe:.bmp -crf 25.0 -vcodec libx264 -acodec libvo_aacenc -vf scale=1280:720 -ar 48000 -b:a 160k -coder 1 -rc_lookahead 60 -threads 0 -an out_vid.mp4"
       proc.StartInfo.UseShellExecute = False
       proc.StartInfo.RedirectStandardInput = True
       proc.StartInfo.RedirectStandardOutput = True
       proc.StartInfo.RedirectStandardError = True
       proc.Start()
       objStream = proc.StandardInput.BaseStream
       For i As Integer = 0 To 75 - 1
           Using img As System.Drawing.Image = Image.FromFile(strAPPPath & "\IMG\1033_WebImage.jpg")
               img.Save(objStream, System.Drawing.Imaging.ImageFormat.Bmp)
           End Using
           objStream.Flush()
       Next
       objStream.Close()
       proc.WaitForExit()

    so, what i am missing here ?

    best regards

  • When streaming response in Flask file unplayable

    21 décembre 2015, par nadermx

    I currently have a function that runs ffmpeg enconder on a flv stream from youtube.

    def console(cmd, add_newlines=False):
       p = Popen(cmd, shell=True, stdout=PIPE)
       while True:
           data = p.stdout.readline()
           if add_newlines:
               data += str('\n')
           yield data

           p.poll()
           if isinstance(p.returncode, int):
               if p.returncode > 0:
                   # return code was non zero, an error?
                   print 'error:', p.returncode
               break

    This works fine when I run the ffmpeg command and have it output to a file. The file is playable.

    mp3 = console('ffmpeg -i "%s" -acodec libmp3lame -ar 44100 -f mp3 test.mp3' % video_url, add_newlines=True)

    But when I have ffmpeg output to stdout via - instead of test.mp3, and stream that response. The file streams fine, is the correct size. But does not play correctly. Sounds chopy, and when I check the properties of the file it doesn’t show the data of it as it does with test.mp3

    @app.route('/test.mp3')
    def generate_large_mp3(path):
       mp3 = console('ffmpeg -i "%s" -acodec libmp3lame -ar 44100 -f mp3 -' % video_url, add_newlines=True)
       return Response(stream_with_context(mp3), mimetype="audio/mpeg3",
                      headers={"Content-Disposition":
                                   "attachment;filename=test.mp3"})

    Is there something I am missing ?

  • How to stop ffmpeg process after it has finished processing in C# ?

    7 janvier 2018, par alan samuel

    I am trying to stop the ffmpeg process once it has finished doing what I want it do, but I am not able to find a way.

    Here is what I have done.

    //Process for running ffmpeg
    Process process = new Process();
    process.StartInfo.RedirectStandardOutput = true;
    process.StartInfo.RedirectStandardError = true;
    process.StartInfo.FileName = ffmpegfile;
    process.StartInfo.Arguments = commandtorun;
    process.StartInfo.UseShellExecute = false;
    process.StartInfo.CreateNoWindow = true;


    process.Start();
    process.WaitForExit();

    process.Close();

    The problem is ffmpeg does not tell the process to stop after it has finished executing, so I cant use WaitForExit() call.

    What i tried doing is

    commandtorun = commandtorun+ " && exit";

    to force ffmpeg to close after it finishes executing. Now this works when I try in cmd.

    But when I do the same thing in C#, ffmpeg closes down as soon as the command is executed.

    Is there any way to force ffmpeg or the process to close after the processing is done ?