Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (91)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Les sons

    15 mai 2013, par

Sur d’autres sites (6060)

  • avcodec/h264 : simplify find_start_code()

    27 octobre 2014, par Michael Niedermayer
    avcodec/h264 : simplify find_start_code()
    

    this also uses avpriv_find_start_code(), though no speed change is expected as
    the area searched is generally small

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264.h
  • How can I rotate and resize a video with ffmpeg ?

    27 mai 2023, par dabri

    I use a programm that needs .mp4 video files in the resolution 1080x608 px (width x height).

    &#xA;

    My original videos have a smaller resolution - mostly 640x480 px.

    &#xA;

    I have to rotate my original videos 90 degree (CounterClockwise) and&#xA;after the rotation resize to the resolution 1080x608 px.&#xA;It should used the centered area of the video.

    &#xA;

    What is the correct command for ffmpeg ?

    &#xA;

    For larger videos I use the following command :

    &#xA;

    md Jukebox_Converted-90_30fps_Audio_HD&#xA;cd Files_To_Be_Converted&#xA;for %%f in (*) do ..\ffmpeg -i "%%f" -vf "crop=608:1080:0:0,transpose=2" -pix_fmt yuv420p -r 30 -c:a copy "..\Jukebox_Converted-90_30fps_Audio_HD\%%f"&#xA;pause&#xA;

    &#xA;

    Thanks & Regards

    &#xA;

  • FFmpeg 16:9 Aspect ratio

    29 mai 2020, par Satish Kumar

    Find the Image attachedI have a video of resolution 1920 x 1080, but it is cropped with black in all sides. I found the crop values as 1440:720:240:208.

    &#xA;&#xA;

    But when i apply crop with (1440:720:240:208.), the output video loses some portion of videos along the four sides, which is actually present in original input video.

    &#xA;&#xA;

    I want to remove only the black border on all sides, but the output video should cover the 16:9 aspect ratio without losing the actual play area as in input (original) video

    &#xA;&#xA;

    pl let provide the ffmpeg syntax for the same.

    &#xA;