Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (28)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

Sur d’autres sites (2713)

  • Calling FFMPEG Commands via Windows Service

    2 février 2017, par Kubi

    I have a windows service and I checked the "Allow service to interact with desktop" checkbox in LogOn tab. However, I still can not call my batch file which is a basic command app to run the ffmpeg commands to transcode some videos in my application. (I’m sending arguments as well)

    I checked the logs in Process Monitor but everything seems fine when I filter it with MyServiceName.exe. All threads are looking fine but the service can not even start the command file.

    If I can not find a solution for this, I’m going to create another service and communicate with each other about the transcoding process, But I’m looking for a way to find the exact problem here.

           BinaryPath = @"c:\Transcoder\ServiceConsole.exe";
           //create a process info
           ProcessStartInfo oInfo = new ProcessStartInfo(BinaryPath, " /readfromfile command.txt");
           oInfo.UseShellExecute = false;
           oInfo.CreateNoWindow = true;
           oInfo.RedirectStandardOutput = true;
           oInfo.RedirectStandardError = true;
           string output = null; StreamReader srOutput = null;

           try
           {
               Process proc = System.Diagnostics.Process.Start(oInfo);

               proc.WaitForExit();

               //get the output
               srOutput = proc.StandardError;

               //now put it in a string
               output = srOutput.ReadToEnd();

               proc.Close();
           }
  • FFmpeg : Add alpha channel to a video using a PNG mask

    7 avril 2016, par Rodrigo Polo

    I saw that FFmpeg can merge/blend two videos with alpha channel and can encode video with alpha channel using the qtrle codec, but, It is possible to apply a PNG file mask, either a black and white or a PNG with an alpha channel to a video in order to have a video with the alpha channel of the PNG applied ?

    Here is the concept in images

    Original video :
    Original video

    PNG file with alpha channel, the "mask" :
    PNG file with alpha channel

    And the result :
    Result

    Or even a black and white image as a mask for alpha channel :
    bnw image

    Any help would be appreciated, thank you !

  • mpeg12enc : Correctly mask dimensions

    7 janvier 2013, par Michael Niedermayer

    mpeg12enc : Correctly mask dimensions