Recherche avancée

Médias (91)

Autres articles (74)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8055)

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

    


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

    


  • 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