Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (8)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5354)

  • Error while streaming using ffserver

    4 septembre 2013, par Nani

    I am trying to stream a combined/stitched video using ffserver and getting an error "Feed '/tmp/feed1.ffm' stream number does not match registered feed"

    Here is what I am doing
    1) grab screen 1 & 2 using ffmpeg x11grab option
    2) Stitch them using ffmpeg -filter_complex option
    3) Stream the stitched video using the ffserver.

    Instead of streaming if I redirect the ffmpeg stitched output to a file I dont see any issue.

  • jpeg "frames" to MP4 conversion, quick fix [duplicate]

    15 avril 2020, par ראלף מהנובר

    How do I convert a series of jpeg images ("Test 03_0000.jpeg" to "Test 03_3000.jpeg") into an MP4 (30fps) ?

    



    I have tried Lightworks and Animotica. It did not work.

    



    I have downloaded ffmpeg now, but tutorial tl/dr.

    



    Help !

    


  • External command does not execute completely - Java

    18 avril 2012, par Hristo Valchev Hristov

    So, I am building a program that converts .flv files to other formats.
    For that I'm using ffmpeg which does its job perfectly when executing it via command line. For example :

    ffmpeg -i C:\test.flv -acodec libmp3lame -y C:\test.mp3

    This example works like a charm - there isn't a single problem when executing the command.

    BUT when I try to execute the same command from within a Java class a problem occurs. I do this in a try-catch block :

    System.out.println("Start");
    Process p = Runtime.getRuntime().exec("cmd /c ffmpeg -i C:\test.flv -acodec libmp3lame -y C:\test.mp3");
    System.out.println("End");

    The console prints "Start". It starts converting and it doesn't finish.
    Can somebody help me ?