Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (48)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (5695)

  • Multiply the video with a scalar with FFMPEG

    16 novembre 2020, par Terpsiphone

    I have to adjust a video which was too dark. In openCV, I simply used Img.Mul() to multiply each of the RGB band with a same scalar and got good result.

    


    Could one do the equivalent operation with FFMPEG ? I tried eq with contrast and brightness, but it was not quite the same thing.

    


    Edit : thanks to a clue in @VC.One's answer below I was able to emulate Img.Mul() with :

    


    ffmpeg -i input.file -vf colorlevels=rimax=0.5:gimax=0.5:bimax=0.5 -c:a copy output.file


    


  • How to store compressed video in a variable using ffmpeg ? (C++) [closed]

    19 octobre 2022, par nokla

    I'm new to ffmpeg and I am trying to write a video editing program.

    


    I want to import a video file and store it compressed so I could unpack and edit it later. I want to store the audio and video streams in two different (compressed) variables that will only contain their designated stream type.

    


    I tried to load and store the video as a vector containing avframes and the problem was that it took a lot of memory, so that's not an option.

    


    Can someone please show me how can I store a compressed video stream so it will take less memory ?

    


  • Linux ffmpeg operation for every mp4 files in subdirectories

    20 janvier 2021, par adigeefe

    I'm using Linux. I want to add transparent watermark in center of a videos with ffmpeg. I just wanted to write a bash script but I couldn't. I also tried on python.
My folder tree ;

    


    $ tree                
.
├── 1._Intro
│   ├── 1._Welcome.mp4
│   ├── 2._Thisisantest.mp4
|   .
|   .
|   .
│   ├── 9._Hello.mp4
│   ├── 10._Is_problem_there.jpg
│   └── pdffile1.pdf
├── 3._HTML
│   ├── 1._HTML.mp4
│   └── 4._Form.mp4
.
.
.


    


    How can I add transparent watermark those mp4 files with same directories and same filenames(No problem if we add 0 the beginning of the file name for output.) ?
Edit:I showed -1 vote, I'm researching about that since last week.