Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (31)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4452)

  • How to specify video resolution when saving stream with ffmpeg

    30 septembre 2022, par Vitaly579

    Now, to save the video stream to a file, I use the command :

    


    ffmpeg -rtsp_transport tcp -i 'rtsp ://ADMIN:PASS@192.168.100.53/cam/realmonitor ?channel=1&subtype=0&unicast=true&proto=Onvif' -t 5 -vcodec copy C :\Video\test.mp4

    


    and I receive a video file with a resolution of 2304 x 1296, which is redundant for me, I would like to receive a file with a resolution of 1280 × 720, is it possible to do this immediately by saving the stream ?

    


    I will be very grateful for your comments

    


  • ffmpeg different resolution hstack

    24 octobre 2022, par kaycaborr

    How can i vertically or horizontally stack videos with different resolutions ?

    


    I currently use
ffmpeg -i top.mp4 -i bottom.mp4 -filter_complex vstack output.mp4 but this fails due to resolutions 1920x640 and 1024x384.

    


  • Variable resolution in video file containers like mp4, mkv

    15 novembre 2022, par Artem Suprunov

    I need to make an application that gets media data from some proprietary system and save to files mkv and mp4, on user's choice. In that system resolution of video frames may vary (for instance, 1920x1080, 1280x720 etc.). My question is whether it's possible to have in that containers a video track with variable resolution ?

    


    I'm going to use ffmpeg libs C api, but if it has design limitations that don't allow to change resolution on fly, then I'll have to implement own muxers, but firstly need to find out if it's possible n terms of the containers format, at least one of them.