Recherche avancée

Médias (91)

Autres articles (62)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (11189)

  • What is the accurate way of calculating SSIM score (with ffmpeg) between a video stream and the reference video ?

    22 mars 2016, par krishna222

    As ffmpeg calculates ssim score by a frame-by-frame comparision,
    how do I exactly align the reference video (say ref.mp4) with the video stream, so that only the corresponding frames (ith frame of both the videos, for all i) are compared by ffmpeg ? Please help.

  • OpenCV or FFMpeg Python - how to combine portions of two video files into one video file ?

    1er juin 2018, par James Johnson

    Using Python, how does one combine two video files and then save into one video file ?

    For example :
    I want to combine 0:15 to 0:30 of A.mp4 with 0:10 to 0:20 of B.mp4 to create C.mp4.

    How does one do this in Python ?

    Thank you !

  • Using FFmpeg, How to convert an frame image sequence to video(video codec : dvvideo) ?

    25 mai 2022, par ruping

    I'm working on an image processing project.

    


    The project proceeds as follows :

    


    Input Video -> frame Sequence -> (Processing) -> Output Video

    


    I want to create the output video with the same specifications as the input video.

    


    The specs of the input video we use are :

    


    - Size : 1280x1080, Codec : dvvideo, pixel_fmt : yuv422


    


    But I am struggling with the following error :

    


    Duration: 00:00:03.20, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: png, rgb24(pc), 1280x1080 [SAR 3:2 DAR 16:9], 29.97 fps, 29.97 tbr, 29.97 tbn, 29.97 tbc
Stream mapping:
  Stream #0:0 -> #0:0 (png (native) -> dvvideo (native))
Press [q] to stop, [?] for help
[dvvideo @ 0x55b965b745c0] DVCPRO HD encoding is not supported.
[dvvideo @ 0x55b965451780] ff_frame_thread_encoder_init failed
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!


    


    The code is below. (subprocess in python)

    


    ffmpeg -y -f image2 -r "{fps}" -i {input_img_root} -s 1280:1080 -b:v {bit_rate}  -vcodec dvvideo -pix_fmt yuv422p "{output}"


    


    (fps and bitrate are taken from the input video. and input_img_root and output are paths.)

    


    I've been trying for several days, but it doesn't work.

    


    If you know any way to make a new video while maintaining the video specifications (Especially dvvideo codec)(not using ffmpeg), it would be nice to share it.