Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (81)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (5584)

  • How to automatically remove black bars using ffmpeg from a Powershell script ?

    27 avril 2021, par timlwsk

    Thanks to the help of the user mklement0 I got this script to automatically convert all files in the folder "video_old" and move them into "video_new", all while keeping the original filename. Original Post.

    



    Now I want to remove the black bars in the container. I know that there is "cropdetect" but AFAIK you have to manually parse the the value into the script. What parameter should I add to bellow's ffmpeg execution ?

    



    Get-ChildItem .\video_old -Filter *.mkv | ForEach-Object {
  .\ffmpeg.exe -i $_.FullName -c:v libx265 -crf 18 ".\video_new\$($_.Name)"
}


    



    Parameters used to remove the bars

    



    ffmpeg -ss 90 -i input.mkv -vframes 10 -vf cropdetect -f null -
...
[Parsed_cropdetect_0 @ 0x220cdc0] x1:0 x2:1279 y1:0 y2:719 w:1280 h:720 x:0 y:0 pts:215 t:0.215000 crop=1280:720:0:0
[Parsed_cropdetect_0 @ 0x220cdc0] x1:0 x2:1279 y1:0 y2:719 w:1280 h:720 x:0 y:0 pts:257 t:0.257000 crop=1280:720:0:0
[Parsed_cropdetect_0 @ 0x220cdc0] x1:0 x2:1279 y1:0 y2:719 w:1280 h:720 x:0 y:0 pts:299 t:0.299000 crop=1280:720:0:0


    



    In this example, we can apply the filter like this :

    



    ffmpeg -i input.mkv -vf crop=1280:720:0:0 -c:a copy output.mkv


    



    OriginalPost

    



    Screenshot

    



    Example screenshot from one of the files

    


  • Tokbox archived video is letterbox (black border around video)

    28 août 2017, par Bijan Markes

    I have archiving setup to save my tokbox publisher streams straight to an AWS S3 Bucket ; But the final saved archive.mp4 is appearing letter-boxed / has black borders around the stream video rather than stretching the video to fit the whole frame. Is there any way to change this ? It is completely on the tokbox end and I also have the fit-mode for the publisher set to "contain" although changing it to cover doesn’t change anything. Thanks.

  • ffmpeg video encode add artefacts on very dark scenes (near to black)

    10 juin 2021, par Marco999

    I have many videos ripped from blu ray (h.264).

    


    I don't have sufficient space to store all videos and I like to re-encode all video with hevc codec (h.265) and keep similar quality (not exactly the some) but with a good compromise.

    


    I have tried this command :

    


    ffmpeg.exe -hide_banner -hwaccel nvdec -hwaccel_device 0 -vsync 0 -i "title00.mkv" -c:s copy -an  -c copy -c:v:0 hevc_nvenc -profile:v main10 -pix_fmt p010le  -rc-lookahead 32 -spatial-aq 1 -aq-strength 12  -cq 30 -qmin 1 -qmax 30 -b:v:0 10M -maxrate:v:0 20M -gpu 0  title00_nvidia_no_audio.mkv


    


    the quality is excellent and is very close to original, but on the very dark scenes (near to black) there are visible artefacts.

    


    To solve the problem I have tried this changes without get any improvement :

    


    -cq 25 -qmin 1 -qmax 25 

-spatial-aq 1 -aq-strength 4


    


    For some strange reason seem that if I decrease the -cq from 30 to 25 the artefacts are more visible.

    


    I general I'am satasfied about the quality result but before start the encoding I like to understand if there is a way to reduce/remove these artefacts on very dark scenes.

    


    Any tips ?

    


    Thanks !