Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (94)

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (6232)

  • When assigning an IP via Docker container macvlan and sending video to that container, will the data be limited ?

    11 septembre 2023, par leejh

    I created a macvlan network as shown below.

    


    docker network create -d macvlan \
    --subnet=192.168.1.0/24 \
    --gateway=192.168.1.1 \
    -o parent=eno1 \
    macvlan_network


    


    And the container was created as shown below.

    


    The plan was to create a mistserver inside the container to send and receive video via IP.

    


    docker run -d --name mistserver1 --restart=always -v mistserver_config:/config -v /home/ketivrar/detr2:/home/shared_folder --net=macvlan_network --ip 192.168.1.16 r0gger/mistserver


    


    There is no problem when transmitting video in the directory using the Mist server.

    


    An error occurs when transmitting video using ffmpeg as shown below.

    


    ffmpeg -re -i test7_10.mp4 -c:v libx264 -preset medium -b:v 8000k -f flv rtmp://192.168.1.16/live/cam1


    


    If you run the above command, the following error will occur and it will stop.

    


    av_interleaved_write_frame(): Connection reset by peer58.73 bitrate=8053.7kbits/s dup=0 drop=4 speed=0.948x
[flv @ 0x5582ab9e6e00] Failed to update header with correct duration.
[flv @ 0x5582ab9e6e00] Failed to update header with correct filesize.
Error writing trailer of rtmp://192.168.1.2/live/cam1: Connection reset by peer
frame= 1845 fps= 29 q=33.0 Lsize=   57806kB time=00:00:58.86 bitrate=8044.2kbits/s dup=0 drop=4 speed=0.94x


    


    I wonder what the reason is...

    


    I created two streams on the Mist server and sent video to each stream simultaneously.

    


    ffmpeg -re -i test7_10.mp4 -c:v libx264 -preset medium -b:v 8000k -f flv rtmp://192.168.1.16/live/cam1


    


    ffmpeg -re -i test7_10.mp4 -c:v libx264 -preset medium -b:v 8000k -f flv rtmp://192.168.1.16/live/cam2


    


    av_interleaved_write_frame(): Connection reset by peer29.46 bitrate=8135.7kbits/s dup=0 drop=2 speed=0.343x
[flv @ 0x55975fb05e00] Failed to update header with correct duration.
[flv @ 0x55975fb05e00] Failed to update header with correct filesize.
Error writing trailer of rtmp://192.168.1.16/live/cam1: Connection reset by peer
frame=  971 fps= 11 q=33.0 Lsize=   29395kB time=00:00:29.66 bitrate=8116.6kbits/s dup=0 drop=2 speed=0.34x



####


av_interleaved_write_frame(): Connection reset by peer25.06 bitrate=8313.0kbits/s dup=0 drop=1 speed=0.292x
[flv @ 0x55ce4a7ce340] Failed to update header with correct duration.
[flv @ 0x55ce4a7ce340] Failed to update header with correct filesize.
Error writing trailer of rtmp://192.168.1.16/live/rtsp: Connection reset by peer
frame=  853 fps=9.8 q=33.0 Lsize=   25857kB time=00:00:25.76 bitrate=8220.2kbits/s dup=0 drop=2 speed=0.297x



    


    It seems to stop before the total size of the two reaches 60000.

    


    This time, I sent the video using OBS.

    


    I confirmed that the connection was disconnected and reconnected at a similar time as ffmpeg.

    


    I think there is a size limit somewhere. Could you please tell me a solution or the exact problem ?

    


    +++++

    


    ffmpeg -re -i test7_10.mp4 -c:v libx264 -preset medium -b:v 4000k -f flv rtmp://192.168.1.16/live/cam1


    


    ->

    


    [flv @ 0x56547e6f1e00] Failed to update header with correct duration.019.0kbits/s dup=0 drop=12 speed=0.982x
[flv @ 0x56547e6f1e00] Failed to update header with correct filesize.
frame= 5328 fps= 30 q=-1.0 Lsize=   87550kB time=00:02:57.93 bitrate=4030.8kbits/s dup=0 drop=12 speed=0.996x


    


    success !

    


    ffmpeg -re -i test7_10.mp4 -c:v libx264 -preset medium -b:v 5000k -f flv rtmp://192.168.1.16/live/cam1


    


    ->

    


    av_interleaved_write_frame(): Connection reset by peer30.63 bitrate=5039.7kbits/s dup=0 drop=6 speed=0.965x
[flv @ 0x555ad97f7e00] Failed to update header with correct duration.
[flv @ 0x555ad97f7e00] Failed to update header with correct filesize.
Error writing trailer of rtmp://192.168.1.16/live/cam1: Connection reset by peer
frame= 2802 fps= 30 q=37.0 Lsize=   55876kB time=00:01:30.83 bitrate=5039.3kbits/s dup=0 drop=6 speed=0.962x


    


    fail...

    


    I only adjusted -b:v 5000k, but the results were mixed.

    


    Are there any resource limits for each container ?

    


    I didn't set it up separately.

    


  • How to change the stream info and codec info of mp4 via Ffmpeg mux/remux code ?

    2 avril 2017, par Gohan1987

    Is it really possible to change stream information and video codec information using FFMPEG muxing / remixing code ?

    Consider this example :
    Major brand : isom
    Minor version : 0
    Compatible brand : isommp41
    Resolution : 1280 x 780

    Convert into another mp4 file
    Major brand : mp42
    Minor version : 512
    Compatible brand : isomavc1mp41
    Resolution : 359 x 288

    Note : without command line. Like using decode, sws_scale code wise ?.

  • avfilter/vf_minterpolate : change the default threshold to get better scene change...

    20 septembre 2019, par Limin Wang
    avfilter/vf_minterpolate : change the default threshold to get better scene change detect result
    

    ./ffmpeg -loglevel debug -i ../fate-suite/svq3/Vertical400kbit.sorenson3.mov -vf
    minterpolate=fps=60:mi_mode=blend -an -f null -
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 1600
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 4120
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 5780
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 6700
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 8140
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 9740
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 14060
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 15680
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 18480
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 20020
    [Parsed_minterpolate_0 @ 0x7fe7f3e193c0] scene changed, input pts 21740

    The results are consistent with tests/ref/fate/filter-metadata-scenedetect

    For the master, it'll detect more than 20 scene change for the same source.

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_minterpolate.c