Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (112)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (15634)

  • Anomalie #3014 : Chaines de langue de "Forums" utilisées dans la "dist"

    24 décembre 2017, par b b

    Pour info, voici les occurrences de chaînes de langue de forum dans la dist à ce jour :

    grep -nHIirF —exclude=*.svn-base — :forum : .
    ./404.html:36 :            [(#ENVfond_erreur|==forum|oui)

    <:forum:aucun_message_forum :>

    ]
    ./article.html:56 : [

    <:forum:form_pet_message_commentaire :>

    ./inclure/forum.html:17 :

    <:accueil_site :> &gt ; ... &gt ; <:forum:forum :> #ID_FORUM

    ./forum.html:28 : [

    (#TITRE|sinon<:forum:forum :> #ID_FORUM)

    ]
    ./forum.html:38 :

    <:forum:forum_avez_selectionne :> #TITRE

    ./forum.html:41 : [

    <:forum:form_pet_message_commentaire :>

    ./breve.html:43 : [

    <:forum:form_pet_message_commentaire :>

  • Convert 16bit Grayscale PNG to HEVC/x265

    14 février 2021, par Ben Bezos

    I want to convert a 12bit image signal to HEVC for effective compression. Because I need to be able to reconstruct the original 12bit signal, the compression needs to be losslessly reversible. At the moment I have the data as 16-bit PNG files.

    &#xA;

    My first try was using ffmpeg :

    &#xA;

    ffmpeg -y -framerate 1 -i input.png -c:v libx265 -x265-params "lossless=1" output.mp4&#xA;

    &#xA;

    Unfortunately the output is not reversible. When extracting the image from the mp4, the pixel values are slightly off.

    &#xA;

    ffmpeg -i output.mp4 -vframes 1 reconstructed.png&#xA;

    &#xA;

    Following Answer suggest converting the input to YUV444 first to avoid unexpected behavior by ffmpeg : Lossless x264 compression

    &#xA;

    I have failed so far to successfully convert my 16bit file to YUV, convert it to x256 and receive a correct reconstruction when decoding.

    &#xA;

    Is there a straight forward way to convert 16bit images to HEVC ?

    &#xA;

  • Python FileNotFoundError : [Errno 2] No such file or directory : 'ffprobe' on Synology

    24 juillet 2022, par Junn Sorran

    I was making a small python 3.8 script to sort photos and videos according to their metadata on my Synology NAS (working on DSM 7.0), overall it works well on ubuntu but it fails on the NAS with this error :

    &#xA;

    &#xA;

    FileNotFoundError : [Errno 2] No such file or directory : 'ffprobe'

    &#xA;

    &#xA;

    I've been searching everywhere for help on this issue, I saw this post and tried the solutions but I still got the error on any video I try to read metadata from.

    &#xA;

    ffmpeg is installed and so are ffmpeg-python and ffprobe-python

    &#xA;

    Here's my test code :

    &#xA;

    from datetime import datetime&#xA;import ffmpeg&#xA;&#xA;name = "VID_20200130_185053.mp4"&#xA;path = "/volume1/photo/phone/DCIM/Camera/"&#xA;data_keys = ["DateTimeOriginal", "DateTime", "creation_time"]&#xA;file = f"{path}{name}"&#xA;print(file)&#xA;vid = ffmpeg.probe(file)[&#x27;streams&#x27;]&#xA;# vid = ffprobe.FFProbe(file).streams&#xA;for key in data_keys:&#xA;    if key in vid[0][&#x27;tags&#x27;]:&#xA;        print(datetime.strptime(vid[0][&#x27;tags&#x27;].get(key).split(&#x27;T&#x27;)[0], "%Y-%m-%d"))&#xA;

    &#xA;