Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (20)

  • 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

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (5816)

  • Working with FFMPEG and C#

    23 septembre 2016, par fauvent

    I have been trying to develop a C# app for a long time now which is intended to run on a server. It takes info from a data base and makes a video with it. I have been using libraries for that porpuse (Aforge). But now it looks like I HAVE to use FFMPEG to combine 5 mp4 in one. My question would be :

    1. Do I have to "execute" the exe file from the download to make it work ? Or I can simply use the dll like the other libraries (like Aforge) ?

    2. FFMPEG looks very complicated to me. I have been trying to use Splicer insted. There is a very nice and clean example that I would love to use. But I can’t get Splicer to work. I am using VS 13. How exaclty I get Splicer working ? Adding the dlls to the "debug folder" then just adding the reference ? If so which dlls ?

    This is my code so far. It does not show any errors but it does not do anything (I added the reference and the splicer.dll to my project)

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using Splicer;
    using Splicer.Renderer;
    using Splicer.Timeline;

    namespace MergeVideos
    {
       public partial class Form1 : Form
       {
           public Form1()
           {
               InitializeComponent();
           }

           private void Form1_Load(object sender, EventArgs e)
           {

               string firstVideoFilePath = @"C:\Users\Nicci\Desktop\santa\profile.mp4";
               string secondVideoFilePath = @"C:\Users\Nicci\Desktop\santa\santa_vid.mp4";
               string outputVideoPath = @"C:\Users\Nicci\Desktop\santa\output.mp4";

               using (ITimeline timeline = new DefaultTimeline())
               {
                   IGroup group = timeline.AddVideoGroup(32, 720, 576);

                   var firstVideoClip = group.AddTrack().AddVideo(firstVideoFilePath);
                   var secondVideoClip = group.AddTrack().AddVideo(secondVideoFilePath, firstVideoClip.Duration);

                   using (AviFileRenderer renderer = new AviFileRenderer(timeline, outputVideoPath))
                   {
                       renderer.Render();
                   }
               }

           }
       }
    }

    Thanks in advance !

  • Anomalie #2263 : Page forum : formulaire absent + chaînes langue

    30 août 2011, par cedric -

    pas de bug sur la config générale forum : si on desactive par defaut, il faut que le forum ait été explicitement ouvert pour qu’il continue à fonctionner. Le bug apparent venait juste du fait que le page article etait en cache donc les liens ’Répondre’ toujours là, alors que sur la page forum le (...)

  • Anomalie #3082 (Nouveau) : Plugin Comments : Double définition de #forum

    1er novembre 2013, par jeanmarie grall

    il semble qu’avec la dist (3.0.11) et le plugin Comments (3.2.7), il y ait une double définition de l’ID forum dans les articles :
    une 1ère fois dans la dist > article.html (L55) puis dans le plugin > comments\inclure\forum.html (L3)
    La ligne en question :
    Du coup, ça provoque une erreur de validation HTML...

    Proposition de b_b : "Je pense qu’il serait "logique" de déplacer l’ancre en question dans inclure/forum de la dist pour fixer le bp. "