Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (48)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • 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

Sur d’autres sites (9389)

  • How can I trim mp3 file ? [duplicate]

    6 mars 2016, par devzone

    Possible Duplicate :
    Crop MP3 to first 30 seconds

    I’m using this class http://www.phpclasses.org/package/5275-PHP-Manipulate-MP3-audio-files.html but I get an error, I want to create a website that sell a music online I would like to have a preview like about 15-20 seconds how to this ? Any help ?
    Thank you.

  • launch ffmpeg on Maui Android

    4 décembre 2024, par lolveley

    I have an Maui app which is deployed on an Android tablet, a Samsung tab S9 FE.
I have copied the ARM8 version of the ffmpeg executable in the AppDataDirectory of my deployed app. The executable, named "ffmpeg", has the rights _rwxrwxrwx (the underscore means this is a file, and not a directory).

    


    I try to execute the file with the command Process.Start :

    


    private void GetThumbnail(string inputFile, string imageFullPath, string ffmpegFullPath)
{
        ProcessStartInfo startInfo = new ProcessStartInfo();

        string arguments = $"-i {inputFile} -ss 00:01:00.000 -vframes 1 {imageFullPath}";

        startInfo.FileName = ffmpegFullPath;
        startInfo.CreateNoWindow = false;
        startInfo.UseShellExecute = false;
        startInfo.RedirectStandardError = true;
        startInfo.RedirectStandardOutput = true;
        startInfo.Arguments = arguments;

        try
        {
            Process process = Process.Start(startInfo);
            process.WaitForExit(5000);
            process.Close();
        }
        catch(Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
}


    


    There is an exception saying the access is denied :

    


    


    System.ComponentModel.Win32Exception (13) : An error occurred trying to
start process '/data/user/0/sxb.explorateur.de.fichiers/files/ffmpeg'
with working directory '/data/data/sxb.explorateur.de.fichiers/files'.
Permission denied

    


    


    The error message doesn't say more, and I do not see what to do, the directory usually is dedicated to the application, and the file is executable.

    


    I know that Android has restricted policies with file execution, and maybe it's even harder for the Samsung operating system, namely One UI 6.1.1 and Android 14.

    


    thank you.

    


  • Ffmpeg sbs 3d mkv to 3d baked into 2d video

    27 octobre 2020, par goodkid38

    I have a couple of 3d blu-ray rips I'd like to stream to a tv that is not 3d compatible. I have a samsung smart tv with an app that I made to stream the video locally. I'm using ffmpeg on my backend to transcode video. I'm curoius to see if ffmpeg can take a 3d sbs mkv and bake the 3d elements into a 2d image. That way the stream is still 3d even on non-compatible devices.