Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (100)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7822)

  • lavc/libopenh264 : Support full range videos in transcoding

    18 avril 2023, par Jun Zhao
    lavc/libopenh264 : Support full range videos in transcoding
    

    Support full range videos when transcoding, enabled the
    YUVJ420P to avoid auto scale from YUVJ420P to YUV420P

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavcodec/libopenh264enc.c
  • Range input breaks ffmpeg when seeking in Chromium

    14 janvier, par Tania Rascia

    I'm getting the following error erratically when I seek with the range input in a React app, which renders the input unusable until refresh :

    &#xA;

    PIPELINE_ERROR_READ: FFmpegDemuxer: demuxer seek failed

    &#xA;

    The only occurrence of this error I can find online is in the Chromium source code. <— linked file goes directly to the line where the error exists.

    &#xA;

    I can't replicate the error in Firefox.

    &#xA;

    &#xA;

    &#xA;

    Nothing out of the ordinary is going on with the input.

    &#xA;

    const handleScrub = (event) => {&#xA;  const newTime = event.target.valueAsNumber&#xA;&#xA;  setProgress(newTime)&#xA;  audioRef.current.currentTime = newTime&#xA;}&#xA;

    &#xA;

    It happens if you click around really fast on the range. Here is an example of the source code, but the error doesn't happen with an .ogg file, only a signed .flac file.

    &#xA;

  • ReSample RTP Audio data over Socket as PCM data using FFMPEG

    5 février 2020, par GJ.

    I want to receive a RTP Stream and send the raw data received in it over TCP / UDP socket. For this i am trying following commands.

    1. I am sending the RTP stream using following command.

      ffmpeg -re -i hello.wav -ar 8000 -f mulaw -f rtp rtp ://127.0.0.1:1234

    2. Receiver to re transmit the stream over TCP / UDP socket.

      ffmpeg -i rtp ://127.0.0.1:1234 -f mulaw tcp ://127.0.0.1:5555 -hide_banner

    3. A Player to play this Socket stream to verify.

      ffplay tcp ://127.0.0.1:5555 ?listen

    My second command shows that its receiving data and transmitting the data to tcp over 5555 port.

    Input #0, rtp, from 'rtp://127.0.0.1:1234':
     Duration: N/A, start: 0.000000, bitrate: 64 kb/s
       Stream #0:0: Audio: pcm_mulaw, 8000 Hz, mono, s16, 64 kb/s
    Stream mapping:
     Stream #0:0 -> #0:0 (pcm_mulaw (native) -> pcm_mulaw (native))
    Press [q] to stop, [?] for help
    Output #0, mulaw, to 'tcp://127.0.0.1:5555':
     Metadata:
       encoder         : Lavf58.29.100
       Stream #0:0: Audio: pcm_mulaw, 8000 Hz, mono, s16, 64 kb/s
       Metadata:
         encoder         : Lavc58.54.100 pcm_mulaw

    But the third command does not receive anything, even i tried dumping the response into a file using FFMPEG in command three but same results.

    What am i doing wrong, Please suggest the correct commands using FFMPEG.