Recherche avancée

Médias (91)

Autres articles (101)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8243)

  • ffmpeg Segmentation fault5 when video bit rate increasead

    17 novembre 2014, par sridhar govindaraj

    I’m trying to use ffmpeg for streaming directly from camera to mobile through wifi.So i would like increase the bit rate as 10Mbps for 720p.Is it possible do using ffmpeg ?
    When I tried to increase the bitrate I’m facing the following issue : "Segmentation fault5" the below is my command log :

    root@arm:~# ffmpeg -f video4linux2 -s 320x240 -i /dev/video0 -r 26 -b 1200k  -f mpegts       "udp://30.0.0.13:5050"
    ffmpeg version 0.8.16-6:0.8.16-1, Copyright (c) 2000-2014 the Libav developers
    built on Sep 17 2014 13:57:48 with gcc 4.6.3
    The ffmpeg program is only provided for script compatibility and will be removed
    in a future release. It has been deprecated in the Libav project to allow for
    incompatible command line syntax improvements in its replacement called avconv
    (see Changelog for details). Please use avconv instead.
    [video4linux2 @ 0x40660] Estimating duration from bitrate, this may be inaccurate
    Input #0, video4linux2, from '/dev/video0':
    Duration: N/A, start: 1416222103.881697, bitrate: 27648 kb/s
    Stream #0.0: Video: rawvideo, yuv420p, 320x240, 27648 kb/s, 30 tbr, 1000k tbn, 30 tbc
    [buffer @ 0x40da0] w:320 h:240 pixfmt:yuv420p
    [mpegts @ 0x410c0] muxrate VBR, pcr every 2 pkts, sdt every 200, pat/pmt every 40 pkts
    Output #0, mpegts, to 'udp://30.0.0.13:5050':
     Metadata:
       encoder         : Lavf53.21.1
       Stream #0.0: Video: mpeg2video, yuv420p, 320x240, q=2-31, 1200 kb/s, 90k tbn, 25 tbc
    Stream mapping:
     Stream #0.0 -> #0.0
    Press ctrl-c to stop encoding
    Segmentation fault5 q=7.0 size=   19220kB time=118.28 bitrate=1331.2kbits/s dup=0 drop=8
  • Raspberry Pi > CRTMPServer > JWplayer

    18 juin 2015, par user3147697

    I’m trying to get a raspberry pi to stream to a crtmpserver, and from there to a webpage with JWplayer.

    I am able to send video successfully to crtmpserver with this :

    raspivid -t 0 -w 960 -h 540 -fps 25 -b 500000 -vf -o - | ffmpeg -i - -acodec aac -ac 2 -strict experimental -ab 160k -vcodec libx264 -preset slow -profile:v baseline -level 30 -maxrate 10000000 -bufsize 10000000 -b 1000k -f rtsp -metadata title=teststream rtsp ://192.168.1.20:5544/flvplayback

    But am having trouble viewing the stream from crtmpserver using this is my html jwplayer code :

    <code class="echappe-js">&lt;script type=&quot;text/javascript&quot;&gt;<br />
       jwplayer(&quot;myElement-teststream&quot;).setup({<br />
           playlist: [{<br />
               sources:[{<br />
                   file: 'rmtp://192.168.1.20:1935/live/teststream&quot;<br />
               }]<br />
           }],<br />
           height: 1080,<br />
           primary: 'flash',<br />
           width: 1920<br />
       });<br />
       &lt;/script&gt;

    What am I missing ?

  • how ffmpeg resolve the flac format file [closed]

    19 février 2024, par haijia

    I want make a music player use ffmpeg. As usual, when read the end of file, the av_read_frame will sender a NULL AVPacket to flash packet.NULL AVPacket But when I use the flac format file, the avcodec_receive_frame get the error is "Invalid data found when processing input" instead of "end of file".receive_frame_error,But on other format, avcodec_receive_frame get the error called "end of file".&#xA;So, Shoud I ignore this error and regard as the end of file ?

    &#xA;

    If possible, I want it get "end of file".

    &#xA;