Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (40)

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

Sur d’autres sites (5069)

  • avfilter/avfilter : Move AVFilterGraph private fields to FFFilterGraph

    10 février 2024, par Andreas Rheinhardt
    avfilter/avfilter : Move AVFilterGraph private fields to FFFilterGraph
    

    (These fields were in AVFilterGraph although AVFilterGraphInternal
    existed for years.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/avfilter.h
    • [DH] libavfilter/avfilter_internal.h
    • [DH] libavfilter/avfiltergraph.c
  • 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;

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