Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (103)

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

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

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

Sur d’autres sites (11003)

  • ffmpeg - merge 3 videos and scale output file to 720p [duplicate]

    25 septembre 2021, par Paker Jack

    I have 3 videos : intro.mp4 main-video.mp4 outro.mp4
The main-video.mp4 is vertical and has size bigger than 720p sometime.

    


    So i want to merge 3 videos together and resize the output video to 1280x720
I know how to merge videos and scaling but i don't know how to combine them.

    


  • Creating Multiple Outputs with ffmpeg For HD 1080p 720p 480p

    11 janvier 2016, par maks

    Please help me in ffmpeg,,
    for multiple outputs with ffpmeg,,
    For HD 1080p 720p 480p,, my ffmpeg is working but i wanna outputs multiple

    Thanks

    Please See the
    ffmpeg screenshot

    Please can you see the picture i have share [i.stack.imgur.com/SqNQr.jpg] —Thanks a lot for the help it work but i want put on my web can you tell me more which box i put the command,, please see picture (Screenshot)

    ffmpeg-cmd -i input -s 1920x1080 -c:v libx264 1080p output.mp4 -s 1280x720 -c:v libx264 720p output.mp4 -s 854x480 -c:v libx264 480p output.mp4 -s 640x360 -c:v libx264 360p output.mp4 -s 426x240 -c:v libx264 240p output.mp4 -s 320x180 -c:v libx264 180p output.mp4

  • FFmpeg : With 1 720p and 1 1080p video, how can I upscale the 1st one to 1080p and hstack them in one command ?

    4 juillet 2021, par YousufSSyed

    This is the command I have right now, but it only works for videos with the same height :

    


    ffmpeg -i "video 1.mp4" -i "video 2.mp4" -c:a copy c:v h264_amf -filter_complex "hstack,format=yuv420p" "Output video.mp4" 


    


      

    • video 1.mp4 is the 720p one
    • 


    • video 2.mp4 is the 1080p one
    • 


    


    I need to keep the audio for the 1st video but not the 2nd one, the 2nd one doesn't have audio. I tried adding [0:v]scale=-1:1080; before hstack but that doesn't work.