Recherche avancée

Médias (91)

Autres articles (76)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (16908)

  • FFmpeg Using Java Runtime to Make Video From PNG on Mac with Spaces in Directory Names

    4 février 2015, par Howard Roark

    I have run into a problem on Mac OSX where I’m trying to make video from PNG’s such as :

    String command = "ffmpeg -r 30 -i " + outputFileName + fileName + "_%d.png -i "+
       outputFileName + fileName + ".wav -r 30 -pix_fmt yuv420p " +
       outputFileName + videoName;

    Runtime rt = Runtime.getRuntime();
    Process proc = rt.exec(command);

    Unfortunately, I don’t have any control over these filenames and they come to me with spaces in them. On Windows, I simply surround the command with quotes and all works as expected. However, on Mac, I tried that and many other things to no avail. Once a space is encountered in the filename, FFmpeg reports that the file cannot be found and truncates the string up to the point of the first space. When I surround the filename with quotes, FFmpeg tells me it can’t find the file and shows me the quotes around the file. Such as :

    String command = "ffmpeg -r 30 -i \" + outputFileName...\"

    Assume the filename is :

    /Users/me/Application Folder/...

    FFmpeg will report : "/Users/me/Application : No such file or directory.

    Without the quotes, it will error with : /Users/me/Application : No such file or directory.

    I have tried every escape sequence I can think of. I’ve also tried putting the escape characters only in the file name where the spaces occur such as :

    outputFileName = outputFileName.replace(" ", "\" \"");

    In that instance, FFmpeg says : /Users/me/Application" : No such file or directory.

    Along with escaping with quotes, I tried :

    outputFileName = outputFileName.replace(" ", "\\");

    I also tried :

    outputFileName = outputFileName.replace(" ", "\\ ")

    In those cases, I get : /Users/me/Application : No such file or directory.

    [Edit : in the preview I see the backslash at the end of application but in the final post it’s not there... there’s a backslash you should see such as ’/.../Application\’]

    Can someone tell me how to get FFmpeg to run my command when the directory name has spaces in it ? I have no control over the directory names when they come to me. Java is able to find these directories just fine without any sort of escape characters in the directory name. What do I have to do to get FFmpeg to do the same ?

    Thanks for your help.

  • vp9 : make decode_coeffs() return value void.

    30 novembre 2013, par Ronald S. Bultje
    vp9 : make decode_coeffs() return value void.
    

    It was previously int and would return error if decode_coeffs_b()
    returns an error ; however, that can never happen, so refactor all
    that code to make all dependent functions return void also (all the
    way up to decode_coeffs_sb()).

    • [DH] libavcodec/vp9.c
  • How to make FFMPEG support QUIC ?

    12 juin 2020, par MR.PJ

    I want to play Quic media videos on iOS/ MAC using ffplay.
How to make FFMPEG support QUIC ?
How to compile?