Recherche avancée

Médias (91)

Autres articles (80)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (11849)

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