Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (91)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4930)

  • ffmpeg sepia effect on video

    22 juin 2015, par Gufran Khurshid

    How can I apply simple sepia effect of a video using FFmpeg ? I am seeking for a single line FFmpeg command which I will be using in android.Though I have learnt colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131 on official FFmpeg doc , but unable to apply it properly.Thank you.

  • RTMP Authentication for Wowza

    6 février 2017, par James Oanta

    I have a java encoder that currently does not support RTMP authentication.

    I’ve done some research on how to implement that part this days but the RTMP protocol lacks of documentation regarding this and I couldn’t find anything (very helpful) related to this.

    Basically I have the following url schema : rtmp ://user:pass@wowza_adress:1935/application

    In the official documentation (V1.0) released by adobe there is no specification of any authentication command nor any RTMP authentication reference.

    Could someone give me an hint/example on how this should be done ?

  • Recording video report for protractor execution on a remote environment

    23 septembre 2019, par Debasish Mukherjee

    I am executing my protractor test suite from my desktop and I am using a remote selenium server. I have configured the ’protractor-video-reporter’ to capture execution for my local windows environment (using ffmpeg codec) and when I execute using my local selenium server, the video capture works fine. But when I execute on remote VMs, it captures my desktop screen.
    I understand that I need to provide the remote location path to ffmpeg codec, but I do not know how to provide appropriate user credentials so that my automation can invoke the remote plugin ?
    My present configuration is as follows :

    const VideoReporter = require('protractor-video-reporter');
    ...
    let config = {
    ...
    onPrepare: () => {
    ...
    VideoReporter.prototype.jasmineStarted = function () {
                            var self = this;
                            if (self.options.singleVideo) {
                                    var videoPath = path.join(self.options.baseDirectory, 'protractor-specs.mpg');
                                    self._startScreencast(videoPath);
                                    if (self.options.createSubtitles) {
                                            self._subtitles = [];
                                            self._jasmineStartTime = new Date();
                                    }
                            }
            };
    ...
    jasmine.getEnv().addReporter(new VideoReporter({
            baseDirectory: './test-output/videoreport',
            createSubtitles: false,
            saveSuccessVideos: true,
            singleVideo: true,
            ffmpegCmd: "C:/FFmpeg/bin/ffmpeg.exe", /*Probably some changes needed here*/
            ffmpegArgs: [
                                    '-f', 'gdigrab',
                                    '-framerate', '30',
                                    '-video_size', 'wsxga',
                                    '-i', 'desktop',
                                    '-q:v', '10',
            ]
    }));
    ...
     }
     ...
    }
    export { config };

    Considering that execution and video capture both has to happen in remote server, please suggest a suitable solution.