Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (61)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • 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 (7728)

  • lavu/hwcontext_qsv : update AVQSVFramesContext to support dynamic frame pool

    8 mai 2024, par Haihao Xiang
    lavu/hwcontext_qsv : update AVQSVFramesContext to support dynamic frame pool
    

    Add AVQSVFramesContext.info and update the description.

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] doc/APIchanges
    • [DH] libavutil/hwcontext_qsv.c
    • [DH] libavutil/hwcontext_qsv.h
    • [DH] libavutil/version.h
  • Dynamic way to add length to an html5 video

    6 septembre 2013, par Eric Paulsen

    I'm looking for a way to update the video length on an HTML5 video in the client side using Javascript.

    Example : I have a video clip loaded on the page that is 30 seconds long and I want to update it on the fly to be 45 seconds long.

    I had a look at the duration property of the HTMLMediaElement, but quickly discovered that the property was read only (source : https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement). I also stumbled upon this blog post, but my ideal solution would be to have one continuous clip. I could accomplish this on the server side using a tool like FFMPEG, but I'd rather not add an increase in load time for our users.

    Any suggestions ?

  • Starting and stopping a system command in C++ based on whether the main program is running

    3 juillet 2018, par zach

    I’m writing a program and I want to use ffmpeg’s x11grab to record the users actions on screen while they interact with the program. I am able to set up the system call to ffmpeg, but I’m not sure how I get it to stop once the program has finished running ?

    Ideally, I would like for the user to hit start (which begins the recording), interact with the main part of the program, hit end, and then have a video file of their session placed somewhere.

    Here’s the code I have so far. This just finds the screen resolution, then calls ffmpeg’s x11grab.

    QRect screen = QApplication::desktop()->screen(QApplication::desktop()->primaryScreen())->geometry();

    int width = screen.width();
    int height = screen.height();

    std::string resolution = std::to_string(width) + "x" + std::to_string(height);
    std::string record_command = "ffmpeg -f x11grab -s  -r 30 -i :0.0 -qscale 0.1 -vcodec huffyuv grab.avi";
    //insert screen resolution into bash command
    record_command.insert(21, resolution);
    std::cout &lt;&lt; record_command;
    //bash command to record
    system(record_command.c_str());