Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (71)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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

  • pngdsp x86 : use unaligned access

    2 décembre 2014, par Christophe Gisquet
    pngdsp x86 : use unaligned access
    

    For test images manually generated to contain only up prediction,
    timing results :
    8380x3032 255x185
    before : 138635 1992
    after : 139232 1996

    Actually jumping to the proper version depending on the alignment :
    8380x3032 : 138767

    A 0.5% speed improvement for gigantic images is not worth the code
    duplication.

    Fixes ticket #4148

    Signed-off-by : Christophe Gisquet <christophe.gisquet@gmail.com>
    Tested-by : Benoit Fouet <benoit.fouet@free.fr>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/pngdsp.h
    • [DH] libavcodec/x86/pngdsp.asm
  • avcodec/h264_refs : Detect more random access points which are not marked

    14 août 2018, par Michael Niedermayer
    avcodec/h264_refs : Detect more random access points which are not marked
    

    Fixes : nature_360-7501616eb5eafca5-1111.mp4

    Reported-by : Thierry Foucu <tfoucu@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/h264_refs.c
  • Cannot access the file because it is being used by another process using ffmpeg

    17 avril 2015, par Andrew Simpson

    I am getting the error :

    Cannot access the file because it is being used by another process

    I have a C# desktop app.

    I am using the Process class to convert images to a video file by using FFMPEG.

    This is my code :

    using (Process serverBuild = new Process())
    {
       serverBuild.StartInfo.WorkingDirectory = Environment.CurrentDirectory;
       string args = " -f image2  -i " + {path} + "\\img%05d.jpg -s 352x288  -filter:v \"setpts=5.0*PTS\" -y " + {path}\\File.mp4;

       serverBuild.StartInfo.Arguments = args;
       serverBuild.StartInfo.FileName = "ffmpeg.exe";
       serverBuild.StartInfo.UseShellExecute = false;
       serverBuild.StartInfo.RedirectStandardOutput = true;
       serverBuild.StartInfo.RedirectStandardError = true;
       serverBuild.StartInfo.CreateNoWindow = true;
       serverBuild.Start();
       //  string output = serverBuild.StandardOutput.ReadToEnd();
       //Log.Instance.Debug(serverBuild.StandardError.ReadToEnd());
       serverBuild.WaitForExit();
       serverBuild.Close();

    }

    Directory.Delete(ExportRoute + FFMPEGPacket.LicenseKey + "\\" + FFMPEGPacket.Guid, true);

    //which raise the error..

    The images are all deleted but the File.Mp4 is not and that is the error. The error says that the newly created MP4 file cannot be deleted.

    NB
    This is partial code to illustrate the error