Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (31)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (5709)

  • Changing the video file attribute without modifying it ffmpeg

    9 décembre 2017, par JoeSkurczysyn

    I am using a ffmpeg script to change the creation date of the file (access to the file) in the meta tag, parameter : creation_time. It’s just that the script that I use modifies the entire video file and change the normal parameter, not only that changes the parameters of the file, it still takes several hours.

    How to improve it ?

    ffmpeg -i 06.02.2017_PC.mp4 -c copy -map 0 -metadata creation_time="2016-02-06 18:10:27" 06.02.2017_PC2.mp4
    pause

    How to improve it ?

  • rtsp feed fails intermittently using node js

    7 mars, par Prem Kumar

    I am new to node.js and was debugging a code written by another developer. We have a an IP camera which provides rtsp feed which is being displayed on a webpage. I can view the camera feed using the rtsp url in VLC but the web viewer of camera feed usually gives white screen although it somehow works intermittently.

    


    I was told that it used to work properly when the machine was on Ubuntu 20.04 now it has been updated to Ubuntu 24.

    


    Index.js

    


    const Stream = require("node-rtsp-stream-jsmpeg");
const fs = require("fs");
const https = require("https");

const httpsServer = https.createServer({
  key: fs.readFileSync("./cert/ssl.key"),
  cert: fs.readFileSync("./cert/ssl.crt"),
});


const options = {
    name: "streamName",
    url: "rtsp://10.20.xxx.xx/profile1",
    wsPort: 3333,
    httpsServer: httpsServer
};

let stream = new Stream(options);
stream.start();


    


    index.html

    


    &#xA;&#xA;  &#xA;  &#xA;  &#xA;  <code class="echappe-js">&lt;script src=&quot;https://jsmpeg.com/jsmpeg.min.js&quot;&gt;&lt;/script&gt;&#xA;&#xA;&#xA;  
    &#xA; &#xA; &#xA;

    &#xA;&#xA; &lt;script type=&quot;text/javascript&quot;&gt;&amp;#xA;  var url = &quot;ws://localhost:3333&quot;;&amp;#xA;  var canvas = document.getElementById(&amp;#x27;video-canvas&amp;#x27;);&amp;#xA;  var player = new JSMpeg.Player(url, {canvas: canvas});&amp;#xA;  &lt;/script&gt;&#xA;&#xA;

    &#xA;

    I tried reinstalling the node modules but it didn't make any difference.&#xA;I am sure that there is no hardware issue as rtsp connection always works in VLC.

    &#xA;

    Following is the console log when it failsConsole Log for failure&#xA;Following is the console log when it worksConsole Log for success

    &#xA;

  • Video File Metadata information loss during file transfer

    5 avril 2019, par user2204553

    I am facing a problem during large file transfer from local drive to network mapped drive and problem is large video file meta data information like video duration,frame rate loss during file transfer.Please help to figure out.