Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (51)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5231)

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

    


    Sorry for my bad english.

    


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

    


    Here the log file from xTeVe :

    



    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    


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

    



    


    on xTeVe i set this settings :

    


    Buffer Size : 5 MB

    


    Timeout for new client connections : 500

    


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

    


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

    


    Thanks for your help.

    


    Greetings
Chris

    


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

  • x264 Downsides of a high CRF (22) intermediary codec between conversions instead of lossless

    18 décembre 2019, par bobtheencoder

    I have a huge collection of video files that are in the range of CRF 16-20 taking up TB’s of space. The only need I have for these originals is that I have to encode them from time to time but the CRF of these final encodes is very low (CRF 26-28).

    I understand that a lossy to lossy converstion ALWAYS results in some quality loss but my question is what if the intermediate file is almost visually lossless compared to the final output.

    So to sum up, what quality difference should I expect from the following routes ?

    CRF 18 (original) -----> CRF 28 (final)
    CRF 18 (original) -----> CRF 22 (long-term storage) -----> Lossy  CRF 28 (final)