Recherche avancée

Médias (91)

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (11927)

  • Encoding videos with mixed aspect ratios in hevc [closed]

    25 octobre 2020, par bader515

    I have a huge library of movies, TV Shows, Anime, and Cartoons (about 16tb sorted by plex on my NAS).

    


    Most of them are encoded in h.264, and each video has a different aspect ratio (1920x1080,1280x720...etc).

    


    Is there a way to re-encode them using any tool to hevc with the same aspect ratio and bit per pixel ?

    


    I have already tried using this command using ffmpeg, but the result is a bigger size video (with the sd videos) :

    


    pushd "%2"
SET paths=paths.txt
SET /A ffmpeg_qv=24
if EXIST %paths% (
for /f "tokens=*" %%a in (%paths%) do (
    echo Changing to directory %%a
    pushd "%%a"
    CALL :ffmpeg
    )
) else (
CALL :ffmpeg
)
pause
EXIT /B %ERRORLEVEL%
  :ffmpeg
    for /R %%A in (*.mp4, *.avi, *.mov, *.wmv, *.ts, *.m2ts, *.mkv, *.mts) do 
(
        echo Processing "%%A"
    ffmpeg -hwaccel auto -i "%%A" -pix_fmt yuv420p -map 0:v -map 0:a -map_metadata 0 -c:v hevc_nvenc -rc constqp -qp %ffmpeg_qv% -b:v 0K -c:a aac -b:a 384k -movflags +faststart -movflags use_metadata_tags "%%A_CRF%ffmpeg_qv%_HEVC.mp4"
    echo Processed %%A
)
GOTO :EOF


    


  • Revision f6c2a6c5d6 : vp9 : rename 'near' parameters + nearest for consistency near is a reserved wor

    31 janvier 2015, par James Zern

    Changed Paths :
     Modify /vp9/common/vp9_mvref_common.c


     Modify /vp9/common/vp9_mvref_common.h



    vp9 : rename ’near’ parameters

    + nearest for consistency

    near is a reserved word in windows builds so using it as a parameter
    name may cause build failures with some configurations

    Change-Id : Iddf1d4ecdb39843f14e95dbfd9dca55f07f81403

  • What does "copy" do in a ffmpeg command line ?

    14 juillet 2016, par PsyberAlyen

    I know that it copies something but other than that what does it do (to what extend it affects the output file) ? Is it a switch or option ? Why does it not have a hyphen before the word itself ?

    I see from other questions that it can copy streams without transcode but what are other possibility that I can manipulate it ?

    I have done ffmpeg --help but I don’t see any documentation about it. Is there a website I can read more about it ?