Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (95)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • avfilter/graphparser : add ’\r’ as whitespace

    6 mai 2016, par Muhammad Faiz
    avfilter/graphparser : add ’\r’ as whitespace
    

    for compatibility with platforms that treat it
    as newline

    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavfilter/graphparser.c
    • [DH] libavfilter/version.h
  • looking for Settings for FFmpeg, xTeVe, Plex [closed]

    3 août 2022, par Chris

    I am not sure if I am in the right place. But maybe someone can help me.

    &#xA;

    Sorry for my bad english.

    &#xA;

    I have a Qnap NAS, on this is insalled FFmepg, xTeVe and Plex.&#xA;I try to see IPTV Streams on Plex.

    &#xA;

    Here the log file from xTeVe :

    &#xA;


    &#xA;

    2022-02-28 21:57:42 [xTeVe] Buffer : true [ffmpeg]

    &#xA;

    2022-02-28 21:57:42 [xTeVe] Buffer Size : 4096 KB

    &#xA;

    2022-02-28 21:57:42 [xTeVe] Channel Name : VIP SW : SRF 1 FHD

    &#xA;

    2022-02-28 21:57:42 [xTeVe] Client User-Agent : Lavf/58.65.101

    &#xA;

    2022-02-28 21:57:43 [xTeVe] Streaming Status : Playlist : Schweiz Neu - Tuner : 1 / 1

    &#xA;

    2022-02-28 21:57:43 [xTeVe] FFMPEG path : /usr/bin/ffmpeg

    &#xA;

    2022-02-28 21:57:43 [xTeVe] Streaming URL : http://tunestream.me:8080/XXXXXXX&#xA;/XXXXXXXX/9165

    &#xA;

    2022-02-28 21:57:43 [xTeVe] FFMPEG : Processing data

    &#xA;

    2022-02-28 21:57:43 [xTeVe] Streaming Status : Receive data from FFMPEG

    &#xA;

    2022-02-28 21:57:43 [xTeVe] FFMPEG log : [mpegts @ 0x55e0732fe560] dimensions&#xA;not set

    &#xA;

    2022-02-28 21:57:43 [xTeVe] [ERROR] FFMPEG error (Streaming was stopped by third party&#xA;transcoder (FFmpeg / VLC)) - EC : 1204

    &#xA;

    2022-02-28 21:57:43 [xTeVe] FFMPEG log : Could not write header for output file&#xA;#0 (incorrect codec parameters ?) : Invalid argument

    &#xA;

    2022-02-28 21:57:43 [xTeVe] FFMPEG log :

    &#xA;

    2022-02-28 21:57:43 [xTeVe] Streaming Status : Client has terminated the connection

    &#xA;

    2022-02-28 21:57:43 [xTeVe] Streaming Status : Channel : VIP SW : SRF 1 FHD (Clients : 0)

    &#xA;

    2022-02-28 21:57:44 [xTeVe] Streaming Status : Channel : VIP SW : SRF 1 FHD - No client&#xA;is using this channel anymore. Streaming Server connection has ended

    &#xA;

    2022-02-28 21:57:44 [xTeVe] Streaming Status : Playlist : Schweiz Neu - Tuner : 0 / 1

    &#xA;


    &#xA;

    on xTeVe i set this settings :

    &#xA;

    Buffer Size : 5 MB

    &#xA;

    Timeout for new client connections : 500

    &#xA;

    FFmpeg Options : -hide_banner -loglevel error -i [URL] -c copy -f mpegts pipe:1

    &#xA;

    If i put the Streaming URL on VLC is working.&#xA;But not with FFmpeg, xTeVe and Plex.

    &#xA;

    Thanks for your help.

    &#xA;

    Greetings&#xA;Chris

    &#xA;

  • Transcoding rtsp over http

    24 novembre 2016, par NikiDon

    Before I explain my problem : Sorry for bad English and if you want you can help me on my spelling too.

    I have a low cost IP camera who give only a RTSP link :
    192.168.x.x/onvif2
    It doesn’t need authentication to see video... my router doesn’t have open ports^^

    I want to trancode rtsp ( because of html can’t play it) with FFMPEG to send it on a server node.js ( express ) and in index.html play stream in video tag :

    Server.js :

    <code class="echappe-js">&lt;script&gt;<br />
       var express = require('express');<br />
       var path = require('path');<br />
       var app = express();<br />
       var server = require('http').Server(app);<br />
       var io = require('socket.io')(server);<br />
    <br />
       app.use(express.static(path.join(__dirname, 'public')));<br />
    <br />
       app.get('/', function (req, res) {<br />
           res.sendFile(__dirname + '/index.html');<br />
       });<br />
    <br />
       server.listen(8080);<br />
       console.log(&quot;server run at 127.0.0.1:8080&quot;);<br />
    <br />
       io.on('connection',function(socket){<br />
           socket.emit('hello','hello user');<br />
       });<br />
    &lt;/script&gt;

    and index.html :

       <video style="background-color: black;" width="480" height="270" autoplay="autoplay">
       <source src="http://127.0.0.1:8080/vid2.mp4" type="video/mp4" codecs="avc1.42E01E, mp4a.40.2">
       </source></video>

       <code class="echappe-js">&lt;script&gt;<br />
           var socket = io.connect();<br />
           socket.on('hello',function(data){<br />
               console.log(data);<br />
           });<br />
    <br />
       &lt;/script&gt;

    ffmpeg -i rtsp ://192.168.x.x/onvif2 -crf 30 -preset ultrafast -acodec aac -strict experimental -ar 44100 -ac 2 -b:a 96k -vcodec libx264 -r 25 -b:v 500k -f flv http://127.0.0.1:xx/vid2.mp4

    The camera starts but I can’t find vid2.mp4

    How can I replace ffserver with a node server (http? udp ?...)