Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (9)

  • 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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (2920)

  • How to take a screenshot of desktop fast with Java in Windows (ffmpeg, etc.) ?

    4 mars 2015, par Setsuna

    I would like to use java to take a screenshot of my machine using FFMPEG or some other solution. I know linux works with ffmpeg without JNI, but running it in Windows does not work and may require (JNI ?) is there any sample of some simple Java class (and anything else necessary) to capture a screenshot runnable in a windows environment ? Is there some alternative to FFMPEG ? I want to take screenshot at a rate faster than the Java Robot API, which I have found to work at taking screenshots, but is slower than I would like.

    I know in Linux this works very fast :

    import com.googlecode.javacv.*;

    public class ScreenGrabber {
       public static void main(String[] args) throws Exception {
           int x = 0, y = 0, w = 1024, h = 768;
           FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(":0.0+" + x + "," + y);
           grabber.setFormat("x11grab");
           grabber.setImageWidth(w);
           grabber.setImageHeight(h);
           grabber.start();

           CanvasFrame frame = new CanvasFrame("Screen Capture");
           while (frame.isVisible()) {
               frame.showImage(grabber.grab());
           }
           frame.dispose();
           grabber.stop();
       }

    This does not work in windows environment. Am not sure if there is some way I could use this same code, but use javacpp to actually get it working without having to change much of the above code.

    Goal is to take screenshots of screen fast, but then stop after it takes a screenshot that is "different", aka. screen changed because of some event like, a window is window closed, etc.

  • WebRTC Experiment : Chrome windows audio not sync

    10 juillet 2014, par putoshop

    I tried to make the audio work for Chrome using this Git Repo, but I’m having a sync problem with video and audio. The audio finished playing earlier. The video seems to be correct. I noticed that when I play the blob, the audio is playing fast.

    I was able to make the audio work by commenting the line the throws error in the condition that check if sampleRate is less than 22050 or greater than 96000 in RecordRTC.js.

    I tried to adjust the sampleRate other values and noticed that If the sampleRate is low, the audio plays slow and if the sampleRate is high, the audio plays fast. I was able to make the audio and video somewhat sync but it seems the pitch of the audio becomes noticeable lower than the expected pitch.

    I’ve also tried FFMPEG to adjust the length of the audio to match the video length, but didn’t been able to make it work.

    the extensions of the files that are uploaded to the server for Chrome are .webm(video) and .wav(audio).

  • How to use Windows Media Foundation instead DirectShow Editing Services ?

    3 novembre 2016, par Den

    I am developing a non-linear video editor. I need to have the support timeline, mixing of audio streams, the transitions between videos, etc. These all features are in DirectShow Editing Services, but it is no longer supported in the new versions of Windows. Instead, offer to use Microsoft Media Foundation. Is it possible to implement the same functionality in the MF or is using other SDK ? For example, gstreamer. Maybe someone will recommend SDK for video editing on the basis of MF ?