Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10557)

  • Revision 8c5670bb6f : Merge "Use SATD based mode decision for block sizes below 16x16"

    31 mars 2015, par Jingning Han

    Merge "Use SATD based mode decision for block sizes below 16x16"

  • hlsenc : add use_localtime_mkdir option to automatically create time-based directory

    3 février 2016, par Johan Ström
    hlsenc : add use_localtime_mkdir option to automatically create time-based directory
    

    Use with -use_localtime, and set -hls_segment_filename to a path which
    contains a subdirectory i.e. /some/path/%Y%m%d/%Y%m%dT%H%M%S-%s.ts
    This will mkdir the %Y%m%d-part of the path if it does not already
    exist.
    In addition, each filename in the playlist output will be prefixed with
    this subdirectory (if playlist and segment shares the same base path).

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/muxers.texi
    • [DH] libavformat/hlsenc.c
  • Can't process RTP video stream from Firefox browser or Python based scripts by FFMPEG

    3 avril 2023, par Gentelam.S

    Any time I want to process (forward, analyze, copy, ...) RTP video stream from FF browser or python based scripts by FFMPEG, it "chucks" and can't work with it. Seems to be stream encoding issue.&#xA;I have a Janus server where clients join from browsers or anothers services, like Python, then I forward the stream to the URL, where FFMPEG is listening on. There is no issue when I try to process any forwarded stream coming from Chrome based browsers, but the problem occurs when I join from FF or Python.

    &#xA;

    I run ffmpeg in Ubuntu container.&#xA;The command I use :&#xA;-loglevel trace -analyzeduration 300M -probesize 300M -protocol_whitelist file,udp,rtp -i port4000.sdp -vf scale=1280:720 -vcodec libx264 -profile:v baseline -preset:v ultrafast -acodec aac -f flv -flvflags no_duration_filesize {{rtmpUrl}}

    &#xA;

    I used also very simple commands like the following but the result is the same :&#xA;ffmpeg -protocol_whitelist file,udp,rtp -i ./SDP/port4000.sdp -c copy -t 10 -y test.mkv

    &#xA;

    The SDP file I use :

    &#xA;

    SDP:&#xA;v=0&#xA;o=- 0 0 IN IP4 127.0.0.1&#xA;s=No Name&#xA;c=IN IP4 127.0.0.1&#xA;t=0 0&#xA;a=tool:libavformat 58.29.100&#xA;m=video 4000 RTP/AVP 96&#xA;b=AS:200&#xA;a=rtpmap:96 VP8/90000&#xA;

    &#xA;

    The screens below depicts how FFMPEG behaves in case of FF and Chrome (loglevel of ffmpeg set to trace).

    &#xA;

    Firefox :&#xA;enter image description here

    &#xA;

    Chrome :&#xA;enter image description here

    &#xA;

    enter image description here

    &#xA;

    enter image description here

    &#xA;

    enter image description here

    &#xA;

    It looks like it brokes after the following log : Before avformat_find_stream_info() pos: xxx

    &#xA;

    (Same problem is if I try to run ffprobe)&#xA;Thank you for any suggestion.

    &#xA;

    As described above, I tried quite a lot of of arguments running ffmpeg, different SDP files but seems to be not enough. I want the stream to be procced properly by FFMEPG.

    &#xA;