Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (42)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (7366)

  • How can I crop and encode a video using flutter natively, now that flutter_ffmpeg is discontinued with no alternatives ? [closed]

    13 mars, par Rageh Azzazy

    As of January 6, 2025, FFmpegKit is officially retired (Taner's article).

    


    This also affects the flutter_ffmpeg and ffmpeg_kit_flutter packages.

    


    Most packages for executing video editing commands were built depending on them and so won't work after April 1, 2025 as mentioned in the package documentation and Taner's article. Some packages that depend on flutter_ffmpeg or ffmpeg_kit_flutter are :

    


      

    • video_trimmer
    • 


    • zero_video_trimmer
    • 


    • flutter_video_trimmer
    • 


    • video_trim
    • 


    • bemeli_compress
    • 


    • video_trimmer_pro
    • 


    • ... others
    • 


    


    Editing video using video_editor or video_editor_2 or video_editor_pits has become a problem.

    


    I believe downloading the binaries and doing the whole thing locally is not just tedious but illegal as well.

    


    I broke down exactly what I need to edit videos in my flutter app and I found those package but have not yet tested them.

    


      

    • Trimming : flutter_native_video_trimmer

      


    • 


    • Compression : video_compress or video_compress_plus

      


    • 


    • Muting : video_compress handles this

      


    • 


    • Encoding : Not sure, I just need a simple MP4 video files

      


    • 


    • Cropping : I can't find a solution for video cropping

      


    • 


    


    I don't need to rotate, reverse or do any fancy stuff to the videos, just those five functions.

    


    Now the only way forward is to find a simple video cropping function and an encoder that work on flutter IOS & Android

    


    My question is not looking for external library recommendations but :

    


    Do you have any ideas how to crop a video in flutter natively ?

    


  • avformat/hlsenc : fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF

    19 mars, par Jack Lau
    avformat/hlsenc : fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF
    

    fix ticket : 10786

    parse the SPS from extradata and
    get profile_compatibility, tier, constraints which was been hard code before.
    HEVC CODECS Attribute reference to : ISO/IEC14496-15

    Signed-off-by : Jack Lau <jacklau1222@qq.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hlsenc.c
  • How to do low-latency streaming on FFMPEG

    1er avril, par Wewd

    I'm attempting to make video streaming with latency as low as possible at 50ms or lower if possible, assuming that it's streaming over LAN.

    &#xA;

    The latency is like 200-400ms with the config. I'm not sure what's the problem is.

    &#xA;

    ffmpeg -init_hw_device d3d11va \&#xA;-filter_complex "ddagrab=0:output_fmt=auto:framerate=60" \&#xA;-c:v av1_amf -usage ultralowlatency -rc 1 -async_depth 1 -g 60 -fps_mode vfr \&#xA;-fflags nobuffer -flags low_delay -strict experimental \&#xA;-sdp_file stream.sdp -f rtp rtp://225.0.0.1:55555&#xA;

    &#xA;

    stream.sdp

    &#xA;

    v=0&#xA;o=- 0 0 IN IP4 127.0.0.1&#xA;s=No Name&#xA;c=IN IP4 225.0.0.1&#xA;t=0 0&#xA;a=tool:libavformat 61.9.107&#xA;m=video 55555 RTP/AVP 96&#xA;a=rtpmap:96 AV1/90000&#xA;a=fmtp:96 profile=0;level-idx=14;tier=0&#xA;

    &#xA;

    Decided to keep ffplay simple since I tried many options without any tangible benefit.

    &#xA;

    Run it on different PC

    &#xA;

    ffplay -hide_banner -protocol_whitelist "file,udp,rtp" -i stream.sdp&#xA;

    &#xA;