Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (83)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (15092)

  • Cropping black bars in video with ffmpeg on ubuntu changes video size

    9 décembre 2013, par pramod

    I have a source video size that's 720x576 with black rectangles on the top and bottom.

    I want to remove the black rectangles and set the output video size to 640x352.

    I tried -vf cropdetect and the value it gave was 640:192:0:80.

    However, putting that same value in crop=<parameter></parameter> changes the output video size.

    How can I fix this ?

    E.g. :

    ffmpeg -i all_the_best_test.mpg -s 640x352 -deinterlace -b 500k -minrate 500k \
    -maxrate 500k -aspect 1.82 -force_fps -vcodec libx264 -me_method 10 \
    -vf crop=640:192:0:80 -r 25 -acodec libfaac -ac 2 -ar 44100 -ab 96k -subq 6 \
    -vpre medium /vod/Movies/final/allthebest-crop-2.mp4
  • Extract part of a video using ffmpeg_extract_subclip - black frames

    20 août 2020, par albert1905

    I'm trying to use : "ffmpeg_extract_subclip" for extracting part of a video.

    &#xA;

    And I'm facing a few problems :

    &#xA;

    1.when I'm cutting a small video (1-3seconds) I'm getting black frames, only audio is working.&#xA;2.when I'm cutting longer video, the output video is stuck 2-3 seconds before the end.

    &#xA;

    This is my simple code :

    &#xA;

    from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip&#xA;&#xA;input_video_path = &#x27;myPath/vid1.mp4&#x27;&#xA;output_video_path = &#x27;myPath/output/vid1.mp4&#x27;&#xA;t1 = 6.5&#xA;t2 = 16    # random numbers, my last attempt..&#xA;    &#xA;ffmpeg_extract_subclip(input_video_path, t1, t2, targetname=output_video_path)&#xA;

    &#xA;

    I tried to look inside the code :&#xA;ffmpeg_extract_subclip Function

    &#xA;

    But still couldn't understand what's wrong.. :(

    &#xA;

    I'm still trying, and if anyone knows the problem or have a different approach, that will be amazing.

    &#xA;

    Thanks a lot for your help !

    &#xA;

  • avfilter/vf_ciescope : Fix undefined behavior in rgb_to_xy() with black

    5 juin 2021, par Michael Niedermayer
    avfilter/vf_ciescope : Fix undefined behavior in rgb_to_xy() with black
    

    Fixes : floating point division by 0
    Fixes : undefined behavior in handling NaN
    Fixes : Ticket 8268

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_ciescope.c