Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (47)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (4502)

  • avcodec/mdec : DC reading for STRv1 is like STRv2

    2 janvier 2024, par aybe aybe
    avcodec/mdec : DC reading for STRv1 is like STRv2
    

    As I understand, support for .STR files is broken for almost 10 years now (since 161442ff2c4b0dd8a5072c6bbe6bf55303fffccf it seems).

    Currently, ffmpeg fails with tons of errors like this on version 1 STRs, e.g. Wipeout 1 :
    [mdec @ 00000000027c72c0] ac-tex damaged at 1 9

    What happens is that only the audio is present in the video file.

    Anyway, that one character patch fixes the problem, video is now rendered.

    Signed-off-by : aybe <aybe@users.noreply.github.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mdec.c
  • Issue with yt-dlp and FFMPEG Converting Webm to MP4 for 360 video : Unsupported channel layout "ambisonic 1"

    22 janvier 2024, par William L W L

    I am trying to convert .webm files to mp4. These are 360 videos that have been downloaded using yt-dlp.

    &#xA;

    I have been using this command successfully, but it does not work on an M2 macbook pro. It works fine on PC.

    &#xA;

    ffmpeg -y -i "/Users/x/Movies/Tropical_Rainforest_360.webm" -c:v libx265 -preset fast -crf 21 -vf "scale=4096x4096:out_range=full" -pix_fmt yuvj420p -aspect 1:1 -movflags faststart "/Users/x/Movies/Tropical_Rainforest_360.mp4"&#xA;

    &#xA;

    The error messages are as follows :

    &#xA;

    [aac @ 0x12ae1fea0] Unsupported channel layout "ambisonic 1"&#xA;[aac @ 0x12ae1fea0] Qavg: nan&#xA;[aost#0:1/aac @ 0x12ae1fc30] Error while opening encoder - maybe incorrect parameters such as bit_rate, rate, width or height.&#xA;Error while filtering: Invalid argument&#xA;[swscaler @ 0x110dd0000] deprecated pixel format used, make sure you did set range correctly&#xA;[swscaler @ 0x120158000] deprecated pixel format used, make sure you did set range correctly&#xA;[swscaler @ 0x130208000] deprecated pixel format used, make sure you did set range correctly&#xA;    Last message repeated 1 times&#xA;[out#0/mp4 @ 0x600003f8c480] Nothing was written into output file, because at least one of its streams received no packets.&#xA;frame=    0 fps=0.0 q=0.0 Lsize=       0kB time=N/A bitrate=N/A speed=N/A    &#xA;Conversion failed!&#xA;&#xA;

    &#xA;

    Context : I work in an educational setting which caters for vulnearble pupils. We cannot use Youtube in real time, this is mainly due to adverts or suggested videos that may trigger our pupils. Some children have mental health issues. Some children have also not been outdoors for several months/years due to medical conditions. We use 360 videos and VR to help bring the outside world inside, The YoutubeVR app is not an option since there is no way to install adblockers.

    &#xA;

    The same script above works fine on a PC virtual machine which I can remote into from my Mac.

    &#xA;

  • Transcode H264 to AV1

    17 février 2024, par Crear

    We have some roadside cameras deployed and due to the supply chain issue (also the cost) we installed 1080P@H264 encoder.

    &#xA;

    I know that AV1 is significantly more efficient than H264, but transcoding H264 to AV1 may result in quality loss.

    &#xA;

    My purpose is to reduce some space while minimizing the quality loss, is there a python or FFmpeg command that can do it ? My major concern is quality loss, but if I use the same bitrate, it won’t reduce the size.

    &#xA;

    We have years of data so we can’t really look into the videos one by one to determine the optimal bitrate, sometimes when the weather is extreme, the higher dynamic in the frames results in a bigger H264 file size. I don’t want to lose those details because it can help fine-tone the detection models.

    &#xA;