Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (37)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

Sur d’autres sites (5611)

  • extract frame type to a file [on hold]

    20 avril 2015, par user3601375

    Am willing to make a video transmission application, suppose I have a MPEG -4 video file to be extracted as BMPS using FFMPEG in the best quality, as a part of my work I have to get each frame type (I B P ) is there anyway to write the frame types of the extracted frames into a text file. Thanks for the help.

  • Hold last frame in ffmpeg streaming

    1er avril 2015, par Tushar Jain

    i am new to ffmpeg streaming so please help me.

    At run time i am getting frames from server & perform ffmpeg streaming on those frames,so able to access the video properly.

    *Problem is- I want to hold the stream at last frame,if suppose server stop throwing frames at runtime for 4-5 seconds,then i want to resume the streaming from the last frame where ffmpeg stops the streaming. *

    Thanks in advance

  • Show progress of a video conversion with FFMpeg

    27 février 2015, par ChrisCreateBoss

    I’m using C# WinForms to make a video converter, I’m using NReco.VideoConverter library. It has an EventHandler named ConvertProgress but I have never used EventHandlers, I was searching for some information on internet, but I still don’t know how to apply it to my application.

    I tried this :

    public static event EventHandler<convertprogresseventargs> _getPercent;
    //...
    _getPercent += ???
    progressBar1.Value = ??
    </convertprogresseventargs>

    I’m stuck there, and I don’t know what to do. Can someone help me ?? Thanks in advance.