Recherche avancée

Médias (91)

Autres articles (44)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (4946)

  • How to split a mp4 video with ffmpeg by Scene Detection ?

    8 mars 2019, par Juan Pablo Fernandez

    I have the following command :

    ffprobe -show_frames -of compact=p=0 -f lavfi "movie=01x01TheStrongestMan.mp4,select=gt(scene\,.4)" > text.txt

    Sample output

    media_type=video|stream_index=0|key_frame=1|pkt_pts=56306|pkt_pts_time=0.625622|pkt_dts=56306|pkt_dts_time=0.625622|best_effort_timestamp=56306|best_effort_timestamp_time=0.625622|pkt_duration=N/A|pkt_duration_time=N/A|pkt_pos=2541|pkt_size=6220800|width=1920|height=1080|pix_fmt=rgb24|sample_aspect_ratio=1:1|pict_type=I|coded_picture_number=0|display_picture_number=0|interlaced_frame=0|top_field_first=0|repeat_pict=0|tag:lavfi.scene_score=1.000000
    media_type=video|stream_index=0|key_frame=1|pkt_pts=867116|pkt_pts_time=9.634622|pkt_dts=867116|pkt_dts_time=9.634622|best_effort_timestamp=867116|best_effort_timestamp_time=9.634622|pkt_duration=N/A|pkt_duration_time=N/A|pkt_pos=1897348|pkt_size=6220800|width=1920|height=1080|pix_fmt=rgb24|sample_aspect_ratio=1:1|pict_type=I|coded_picture_number=0|display_picture_number=0|interlaced_frame=0|top_field_first=0|repeat_pict=0|tag:lavfi.scene_score=0.810919

    I also have the following command

    ffmpeg -i 01x01TheStrongestMan.mp4 -vf select='gt(scene\,0.4)' -vsync vfr frame%d.png

    I might be close, how can I split the big mp4 video into smaller videos by Scene Detection ?

    Thanks,

  • libavfilter/dnn_bakcend_openvino : Add automatic input/output detection

    17 janvier 2024, par Wenbin Chen
    libavfilter/dnn_bakcend_openvino : Add automatic input/output detection
    

    Now when using openvino backend, user doesn't need to set input/output
    names in command line. Model ports will be automatically detected.

    For example :
    ffmpeg -i input.png -vf \
    dnn_detect=dnn_backend=openvino:model=model.xml:input=image :\
    output=detection_out -y output.png

    can be simplified to :
    ffmpeg -i input.png -vf dnn_detect=dnn_backend=openvino:model=model.xml\
    -y output.png

    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Reviewed-by : Guo Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
    • [DH] libavfilter/dnn_filter_common.c
  • ppc : Fix runtime CPU detection for apedsp, huffyuvdsp, svq1enc

    5 juin 2014, par Diego Biurrun
    ppc : Fix runtime CPU detection for apedsp, huffyuvdsp, svq1enc
    
    • [DH] libavcodec/ppc/apedsp_altivec.c
    • [DH] libavcodec/ppc/huffyuvdsp_altivec.c
    • [DH] libavcodec/ppc/svq1enc_altivec.c