Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (80)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (8852)

  • ffmpeg error : Unable to find a suitable output format for 'scale=1500:1000'

    13 février 2021, par Tomáš Zato - Reinstate Monica

    I am trying to convert a bunch of images into a video. The original image resolution is 6000x4000, but if I use ffmpeg to create a video with that resolution, no player can even play it because it's way to huge.

    


    I tried to set the output resolution as such, dividing the input resolution by 4 :

    


    ffmpeg -r 60 -s 1500x1000 -start_number 3790 -i DSC_%04d.jpg -vcodec libx264 -crf 25  -pix_fmt yuv420p ../video_lowres.mp4


    


    This had no effect and still produced 6000x4000 video. So instead, I tried this parameter : scale=1500:1000 The full command I ran :

    


    ffmpeg -r 60 scale=1500:1000 -start_number 3790 -i DSC_%04d.jpg -vcodec libx264 -crf 25  -pix_fmt yuv420p ../video_lowres.mp4


    


    But I got this error :

    


    [NULL @ 000002ad897bd9c0] Unable to find a suitable output format for 'scale=1500:1000'
scale=1500:1000: Invalid argument


    


    How can I create a downscaled video from photos using ffmpeg ?

    


  • movenc : add movie_timescale option instead of hardcoding 1000

    27 avril 2021, par Justin Ruggles
    movenc : add movie_timescale option instead of hardcoding 1000
    

    There are cases where using 1000 as the MP4 timescale is not
    accurate enough, for example when one needs sample-accurate audio
    handling.

    This adds a new AVOption to the MOV/MP4 muxer to override the
    movie timescale, but it still defaults to 1000 to maintain current
    default behavior.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavformat/movenc.c
    • [DH] libavformat/movenc.h
    • [DH] libavformat/version.h
  • FFmpeg more than 1000 frames duplicated and input height doesn't match

    2 septembre 2021, par Karine

    I'm currently using this code to record two windows side by side :

    &#xA;

    ffmpeg -f gdigrab -framerate 30 -i title="" -f gdigrab -framerate 30 -i title="" -c:v h264_nvenc -qp 0 -filter_complex hstack=inputs=2 2.mp4&#xA;

    &#xA;

    However it throw this error after execution :

    &#xA;

    More than 1000 frames duplicated&#xA;

    &#xA;

    Error Log : https://pastebin.com/gREVrKVK

    &#xA;

    The first window mostly time is the same frame, maybe 1 frame change in each 3 sec.

    &#xA;

    Another error in console is when the first window have a different height than second window, error :

    &#xA;

    [Parsed_hstack_0 @ 000002491166fd00] Input 1 height 500 does not match input 0 height 488.&#xA;[Parsed_hstack_0 @ 000002491166fd00] Failed to configure output pad on Parsed_hstack_0&#xA;

    &#xA;

    Error log : https://pastebin.com/vqdBPfpv

    &#xA;

    Looks like is not possible to record when they have different dimensions, so, if possible I would like to ask how to scale the first window to the same height (doesn't need to keep aspect ratio) of the second window, considering low CPU use above the video quality.

    &#xA;