Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (51)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • x86 : videodsp : Properly mark sse2 instructions in emulated_edge_mc as such.

    24 octobre 2013, par Ronald S. Bultje
    x86 : videodsp : Properly mark sse2 instructions in emulated_edge_mc as such.
    

    Should fix crashes or corrupt output on pre-SSE2 CPUs when they were
    using SSE2-code (e.g. AMD Athlon XP 2400+ or Intel Pentium III) in
    hfix or hvar single-edge (left/right) extension functions.

    Signed-off-by : Janne Grunau <janne-libav@jannau.net>

    • [DBH] libavcodec/x86/videodsp.asm
    • [DBH] libavcodec/x86/videodsp_init.c
  • prevent ffmpeg from opening console window

    10 février 2020, par Yesub

    I have a node/express server which is used to give streams from IP camera to a website. Everything is working well. I run that webserver with PM2 on a windows server.

    The problem : for each stream I have a windows console opening with just nothing logged in. The console reopen when I try to close it.

    Is there a way to prevent those console to open ?

    Here is the related node.js code :

    const { NodeMediaServer } = require('node-media-server');

    private _initiate_streams(): void{
       DatabaseProvider.instance.camerasDao.getCamerasList().pipe(
         take(1)
       ).subscribe(
           (databaseReadOperationResult: DatabaseReadOperationResult) => {
               if (databaseReadOperationResult.successful === true){
                 const cameras = databaseReadOperationResult.result;
                 const tasks = [];
                 cameras.forEach( camera => {
                   tasks.push(
                     {
                       app : config.get('media_server.app_name'),
                       mode: 'static',
                       edge: camera.rtsp_url,
                       name: camera.stream_name,
                       rtsp_transport: 'tcp'
                     }
                   )
                 });

                 const configMediaServer = {
                   logType: 3, // 3 - Log everything (debug)
                   rtmp: {
                       port: 1935,
                       chunk_size: 60000,
                       gop_cache: true,
                       ping: 60,
                       ping_timeout: 30
                   },
                   http: {
                       port: config.get('media_server.port'),
                       allow_origin: '*'
                   },
                   auth: {
                       play: true,
                       api: true,
                       publish: true,
                       secret: config.get('salt'),
                       api_user: 'user',
                       api_pass: 'password',
                   },
                   relay: {
                       ffmpeg: 'C:\\FFmpeg\\bin\\ffmpeg.exe',
                       tasks: tasks
                   }
                 };

                 var nms = new NodeMediaServer(configMediaServer)
                 nms.run();
               } else {
                   // catch exception
               }
           }
       );
     }
  • avformat/movenc : add a flag to enable CMAF compatability

    25 novembre 2019, par James Almer
    avformat/movenc : add a flag to enable CMAF compatability
    

    Sets some required constrains and reports compatability with the relevant
    compatible brand.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/movenc.c
    • [DH] libavformat/movenc.h
    • [DH] tests/ref/fate/movenc