Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (97)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (12712)

  • ffmpeg taking lot of data for ip cams streaming

    14 mars 2021, par JCH

    I have an ip cam which is connected to a cellular router.

    


    rtsp ://admin:admin1234@172.xxx.xx.xxx:82/cam/realmonitor ?channel=1&subtype=1

    


    This is the rtsp link of my ip cam. When i insert this link inside VLC it gives me sub stream one (one with the less quality). Now when i compare the output of vlc to my cameras substream 1 it looks the same. Thats what i want. But when i put this link inside ffmpeg it gives me a much better quality video and it does not look like my sub stream 1 from the camera, but im using the same link. Because of this the router that my ip cam is connected is consuming a lot of data. Any help is appreciated.

    


    ffmpeg code

    


    ffmpeg -rtsp_transport tcp -v verbose  -i rtsp://admin:admin1234@172.xxx.xx.xxx:82/cam/realmonitor?channel=1&subtype=1    -f hls    -hls_flags delete_segments    -hls_time 5  -segment_time 5 -hls_list_size 5 C:\Apache24\htdocs\ipcam\video_1\stream.m3u8


    


  • HLS streaming using FFMPEG

    1er décembre 2014, par user3663917

    I am new to FFMPEG. Now i was trying to do HLS live streaming using FFMPEG.Is there some method by which we can use FFMPEG for converting data from camera to ts and then this ts to segments so that it can be used for HLS live streaming ?

  • ffmpeg 5.x and new channel layout sytax - getting warnings and errors with old syntax - cant find doc for new syntax

    2 septembre 2022, par dts350z

    In ffmpeg 4.x this syntax worked for adding channel mapping to a 12 channel file (7.1.4) :

    


    ffmpeg.exe" -y -i "input_file.wav" -acodec pcm_s24le  -af "pan=7.1+TFL+TFR+TBL+TBR|FL=c0|FR=c1|FC=c2|LFE=c3|SL=c4|SR=c5|BL=c6|BR=c7|TFL=c8|TFR=c9|TBL=c10|TBR=c11" "out_12ch_mapped.wav"


    


    Now in ffmpeg 5.x I get :

    


    [Parsed_pan_0 @ 000002d6b99b7600] Channel layout '7.1+TFL+TFR+TBL+TBR' uses a deprecated syntax.
[Parsed_pan_0 @ 000002d6b99b7600] [SWR @ 000002d6b9d950c0] Input channel layout '12 channels' is not supported
[Parsed_pan_0 @ 000002d6b99b7600] Failed to configure input pad on Parsed_pan_0
Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #0:0
Conversion failed!


    


    and no amount of googling or reading the doc, or patches, reveals the new channel layout syntax or why "12 channels" is not supported.