Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (66)

  • 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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (11490)

  • Simulating MPEG1/2 transmission over a noisy channel [on hold]

    17 novembre 2015, par StepTNT

    The question may sound out of scope here but this is my last resource.

    I need to write a software that does :

    1. Get an uncompressed video from disk
    2. Compress it into MPEG-1 or MPEG-2 being able to change quantization matrix, GOP size and/or macroblock size for DCT/motion search
    3. Apply a repetition code to add redundancy
    4. Simulate transmission over a noisy channel with given error rate
    5. Reconstruct the original stream from the repetition code
    6. Decode the video and compare it with the original one by gathering stats like frame-by-frame difference, file size and stuff like that

    This should by done by a nice GUI to show the input and output videos, alongside their frame difference.

    Given what I need to do, I can write some requirements :

    • An encoder which allows me to change some of the parameters (needed for point 2)
    • A language that allows me to work at bit level (needed for points 3 and 5)
    • A language that allows me to build a nice GUI using a designer (GUI is not the core of the project so I can’t afford wasting time by writing one)

    So far my searches have led to mixed results that are not giving me enough resources to start.

    My first find was this MATLAB project which implements MPEG and has some parameters that can be tweaked (like quantization matrix and GOP pattern for example).
    The problem here is that I don’t know MATLAB at all, so I have no idea on how to link everything and build a GUI.

    So the next step was to move to JAVA, and I found a LOT of FFMPEG wrappers, but none seems to allow me to set the parameters that I need. My last try was with Xuggler but the Wiki is down and the documentation does not talk about what I need. Plus, JAVA doesn’t work at bit level so I’d have issues applying the repetition code.

    Failing with JAVA led me to C# and DirectShowNet, but the documentation is quite lacking and I don’t know how to start because I didn’t find anything related to setting the parameters that I need using Filters.

    The question now is : is there any language/framework/platform that allows me to do what I need without having to deal with pure C/C++ ?
    I’d expect a lot of stuff on this matter since we’re talking about well known codecs, still I’m having a hard time finding what I need.

  • How to integrate a video editor into a web application [on hold]

    20 juin 2016, par Nick Lynch

    I am looking to figure out how to integrate a video editor into an application i’m building, using php (laravel 5).

    I am experienced in php development, and how to play and other front-side aspects of video, but I cannot find much on how to actually edit video on the server side. I have found FFMPEG or Kaltura may be the way to go, but i have found very little about those or if they are the right tools.

    Please let me know the best way to actually implement a video editor into my app

    Thank you !!!

  • Encoding raw video data using C++ [closed]

    6 décembre 2020, par Lakshya

    I have raw video data ( array of unsigned chars ). Which is data to represent one frame.
I have many frames like this.(Actually these are the frames of a video which I have already decoded.)

    


    How can I encode it using Gstreamer or FFMPEG or something else. Programming language should be C++.

    


    I am expecting some example code.