Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (5)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (3584)

  • How to scale video dimensions to a square format with maximum 640x640 using FFmpeg ? [closed]

    8 février 2024, par Mukhtor Rasulov

    I’m working with FFmpeg and need to scale video dimensions to a square format while ensuring that the maximum size is 640x640.

    


    Here are my requirements :

    


      

    1. If the original width and height of the video are greater than 640, I want to scale it down to 640x640.
    2. 


    3. If the original width and height are both less than 640, I want to maintain the aspect ratio and set the dimensions to min(width, height) x min(width, height).
    4. 


    5. The audio should be copied without any changes (using -c:a copy).
    6. 


    7. Input video size will be max 50MB and I need output size less than 15MB
    8. 


    


    My current approach is :

    


    ffmpeg -y -i 1.MOV -vf "crop=720:720, scale=640:640" -crf 21 -preset veryfast -c:a copy 1-640x640.MOV

    


    if the width and height eqauls, I just scale to square without cropping, because I can't lose items in video.

    


    I’ve tried various approaches, but the output size often ends up being much larger than the input. Could someone guide me on how to achieve this efficiently ? Additionally, I’m not sure if the -preset veryfast option is optimized for both time and video size. Any insights on that would be appreciated.

    


    Thank you in advance for your help !

    


  • How to speed up, adjust color, Crop, Scale and Mix two audio inputs into a video by FFMpeg ? [closed]

    7 janvier 2024, par Reach

    How to speed up, adjust color, Crop, Scale and Mix two audio inputs into a video by FFMpeg ?
When run not show result

    


    I try to change some function in filter_complex but not work or show result when run.
My goal want mix one audio to one video and apply some filter like hflip, crop, scale, speed up and adjust color for video.

    


    My command :

    


    ffmpeg -y -i "%%a" -i "sound\123.mp3" -c:v copy -filter_complex "[0:v]hflip,crop=720:720,scale=1080 :-1,eq=saturation=1.3,eq=brightness=0.06:saturation=2,setpts=0.8*PTS[v] ;[0:a]atempo=(1/0.8)[a],[0:a][1:a] amix=inputs=2:duration=longest [audio_out]" -map "[v]" -map "[a]" -c:v -map 0:v -map "[audio_out]" h264_nvenc "output%% na.mp4

    


  • fftools/ffmpeg_opt : drop HAS_ARG from auto{scale,rotate}

    15 décembre 2023, par Anton Khirnov
    fftools/ffmpeg_opt : drop HAS_ARG from autoscale,rotate
    

    It causes those options to be parsed as either
    * -autofoo 0/1 (with an argument)
    * -noautofoo (without an argument)
    This is unnecessary, confusing, and against the documentation ; these are
    also the only two bool options that take an argument.

    This should not affect the users, as these options are on by default,
    and are supposed to be used as -nofoo per the documentation.

    • [DH] fftools/ffmpeg_opt.c