Recherche avancée

Médias (91)

Autres articles (111)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8242)

  • FFMpeg Drawtext black pixels behind the font

    21 janvier 2023, par sweetngx

    I burn the name of the movie with drawtext to my movies converted with FFMPeg, but I noticed that the black pixels around the font are disturbing, as seen in the picture. I don't know if this is a missing line of code or the nature of drawtext itself. Do you think there is a solution to make the movie name more legible ?

    


    enter image description here

    


  • FFMPEG stream separate video and music files

    10 janvier 2018, par Kulcanhez

    I want to stream using FFMPEG some random nature videos and have some random music playing under it, by other words, playing some video files and some music files at the same time. I already searched but I found no solutions. I’m using Ubuntu currently. I said FFMPEG because I didn’t found any other solution. Thanks !!

  • executing cd command and ffmpeg in java

    27 août 2013, par Chris J

    How to run cd command(In linux Ubuntu) and ffmpeg on the changed directory. The following jsp program not working for me.

    String cmd = "cd "+getServletContext().getRealPath("/")+"Files/videos/";
    out.println(cmd);

    ProcessBuilder pb = new ProcessBuilder(
       "/bin/sh", "-c",
       cmd + "&& ffmpeg -i nature.MP4");


    Process p = pb.start();
    BufferedReader in = new BufferedReader(
              new InputStreamReader(p.getInputStream()) );
    String line;
    out.println("Meta-data...");
    while ((line = in.readLine()) != null) {
     out.println(line);
    }
    in.close();

    Thanks in advance...