Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (19)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

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

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

Sur d’autres sites (5100)

  • FFMpeg Upscaling issue

    12 septembre 2020, par user14266881

    Hello so I created a bat file. CMD opens for a quick second and then closes, and if I open it again with the file it generated, it asks me do I want to overwrite it

    


    FFMpeg not working, after opening Bat File

    


    This is the bat file I created.

    


    cd D:\sexy renders\Upscaling
ffmpeg  -i CONVERT.mp4 -vf scale=3840:2160:flags=neighbor -c:v h264_nvenc -profile high -preset slow -rc vbr_2pass -qmin 17 -qmax 22 -2pass 1 -c:a:0 copy -b:a 384k VIDEO.mp4


    


    Also to add, I've went to Advanced System Settings -> Advanced -> Environment Variables -> Path -> New -> D :\sexy renders\ffmpeg\bin

    


  • ffmpeg shutting down when stream is silent

    7 février 2017, par chr_lt_ney

    I am running ffmpeg in a Linux environment, where I merge the audio stream from an Icecast-stream and a static image in order to be able to stream that to Youtube.

    At times, the Icecast stream get’s very silent, sometimes for almost a minute. That is intended to happen, due to the nature of the content. But, when the stream get’s too silent, ffmpeg just shuts down with no notice.

    This is how I start ffmpeg :

    ffmpeg -loop 1 -r 30  -s 1280x720 -i /var/www/html/files/youtube/image.png -i http://my-stream-to-icecast:8000/my-mount -c:v libx264 -preset fast -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p -f flv rtmp://a.rtmp.youtube.com/live2/my-youtube-key

    Any ideas on how to solve this ? And/or how to optimize the above ?

    Thanks a lot !

  • Can't write H264 videos with Python and OpenCV

    14 octobre 2017, par slalomchip

    Using OpenCV with Python 3.6 (within an Anaconda platform) in a Windows environment, I can write videos using the DIVX, MJPG, and MPEG codecs (and probably some others) but cannot write videos using the H264 codec. I can read AVC1 (which is a version of H264) videos with OpenCV without issue.

    I have opencv_ffmpeg320_64.dll in my Anaconda3 folder and also in my Anaconda3\Lib\site-packages folder. I have also placed the downloaded and unzipped version of ffmpeg in my main (C :) folder.

    Does anyone have any suggestions of what I need to do to write H264 videos with OpenCV ? Thanks !