Recherche avancée

Médias (91)

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Adding unique RGB color watermark per video frame with FFmpeg

    8 juin 2016, par Dustin Kerstein

    I’d like to add a unique watermark onto each unique video frame in an h264 mp4 video. More specifically, I want the watermark to be a X by X pixel square solid 8-bit RGB color, and each color watermark should be unique across all frames in the video (up to the theoretical 24 bit max of 16.7 million colors/frames).

    Is this possible to do programatically using FFmpeg filters (or another tool) without requiring a photo for each possible color watermark ?

    If not, assuming I already have the full set of 1029 solid color photos downloaded from http://www.solidbackgrounds.com, can anyone think of an easy way to watermark a video with <= 1029 frames using FFmpeg ?

  • How to preserve color when extracting thumbnail from videos with FFMPEG ?

    7 novembre 2022, par coffee-cat

    I'm using FFMPEG to extract thumbnails from arbitrary user-submitted videos to jpg and the outputs are noticeably darker than the input video.

    &#xA;

    Here is an image captured of a MP4 input (SMPTE Color Bars) using Mac OS's built in screen capture utility (which seems to have a reasonably accurate color representation. Red value on this image is R : 191, G : 0, B : 1.
    &#xA;brighter image of SMPTE color bars

    &#xA;

    Here is the same image captured using the FFMPEG script below. Red value on this image is R : 176, G : 0, B : 2.
    &#xA;diminished brightness image of SMPTE color bars

    &#xA;

    Here is the ffmpeg options I'm using to extract these images :

    &#xA;

    ffmpeg -i input-video.mp4 \&#xA;    -vframes 1 \&#xA;    -filter:v scale=600:-1 \&#xA;    -qscale:v 90 \&#xA;    -f singlejpeg \&#xA;    thumb.jpg &#xA;

    &#xA;

    Any thoughts on how to solve this ?

    &#xA;

    (Note that while there are related topics on Stack Overflow, all of them are specific to known input video types. I'm looking for a solution that will work across arbitrary inputs.)

    &#xA;

  • Encode multiple files from the same Folder with Google Colab & FFmpeg

    16 août 2021, par Ptibouc77

    i made a Google colab to encode my videos, but actually i can only do files on by one.&#xA;I want to encode all video files from the same folder.

    &#xA;

    I tried this but didn't seem to works

    &#xA;

        import os&#xA;&#xA;DIRECTORY= &#x27;/content/drive/My Drive/Videos&#x27;&#xA;for filename in os.listdir(DIRECTORY):&#xA;    if (filename.endswith(".mov")): #or .avi, .mpeg, whatever.&#xA;        os.system("ffmpeg -i {0} -c:v libx265 -crf 26 -c:a aac -b:a 160k output%d.mp4".format(filename))&#xA;        print(filename)&#xA;

    &#xA;

    Edit : I edited the FFmpeg command but still not workings on Google Colab.&#xA;Edit 2 : Print command only return the name of the files with the extension like "MyMovie.mov" how do i put the full path to the ffmpeg command ? I also want to put the ouput files to a subfolder named x265

    &#xA;