Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (26)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5095)

  • getruntime() exec() with double quotes in command

    29 décembre 2012, par brux

    I want to execute an ffmpeg command, the method I am using works with every command on my list except the following one which contains double quotes to set a filter (-vf) parameter

    ffmpeg -i 2012-12-27.mp4 -vf "movie=bb.png [movie]; [in] [movie] overlay=0:0 [out]" -vcodec libx264 -acodec copy out.mp4

    I have tried changing the quotes for single quotes with no luck. The command works at the android terminal with both single and double quotes.

    The app I'm developing uses about 5 ffmpeg commands, all work except this one, is this some bug ?

    I can't find a concrete solution to this problem, breaking the args into an array and then passing this to runtime().exec() as suggested elsewhere doesn't seem to work, or simply trying to escape the quotes with \" won't work.

    Both of the files referenced in the above command are located in the sdcard, I removed the concatenation of the command out so that things don't get messy, rest assured these commands work in a terminal when referencing the full paths to the files.
    I contatenate the string passed to getRuntime().exec() using a stringbuilder and`getexternalstorageDirectory().getabsolutepath() to get the path to each file like I have been doing with previous commands when using the process class.

    I am using Jelly Bean 4.2 in case that is of any significance.

  • cocoa ffmpeg seamless loop video

    13 décembre 2012, par Marius

    OK i've seen many people having issues with getting videos to loop seamlessly on iOS. If it's a video that you provide with your app (in other words if you have control over the file itself) - there's a way of getting around the problem - by providing the video as self-contained looped MOV file. And it works like a charm. The way you do it is :

    • open an MP4 video in QT (QT7 works fine)
    • re-save it as self-contained movie
    • CMD+A, CMD+C and then CMD+V a bunch of times
    • save

    This will create a slightly bigger file than the original.

    So now i've just gotten curious : could the same thing be done in ffmpeg ? If so - how would one take an MP4 video, save it as self contained MOV and loop it for, let's say, around 60 minutes, without actually cloning video data and increasing file size just slightly ?

    Thanks for your thoughts.

  • saving frames from ffmpeg

    12 décembre 2012, par user843681

    I am using ffmpeg in C# to discard a movie to its frame images and save each frame as a .png image. However, I can not save the frames ! the code operates, but then I can not save them to a folder ! I would like to know how can I save the output of ffmpeg to a folder.

    public static void GetVideoFrames(string saveTo)
    {
       string mpegpath = @"E:\Csharp\ffvideo\";
       string ffmpegPath = Path.Combine(mpegpath, "ffmpeg.exe");
       string inputMovie = @"E:\Csharp\ffvideo\test.mp4";
       string parameters = string.Format("ffmpeg -i {0} -f image2 frame-%1d.png -y {1}",
           inputMovie, saveTo);
       Process proc = new Process();
       proc.StartInfo.FileName = ffmpegPath;
       proc.StartInfo.UseShellExecute = false;
       proc.StartInfo.Arguments = parameters;
       proc.Start();
    }