Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (104)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • 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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (13502)

  • ffmpeg co-located POCs unavailable

    17 juin 2016, par Naz NazD Derbigny

    I’m having trouble trying to figure out how to stop this bug.

    When it reaches 00:37:04,the time, it displays co-located POCs unavailable and I don’t know how to get rid of it. The quality for that specific second looks like it is pixelated. I am new to this kind of thing and I was wondering if you guys can help me out.

    Here is everything that happens when it reaches it.

       Past duration 0.999992 too large
    [Parsed_subtitles_0 @ 0000000002886860] fontselect: (Open Sans Semibold, 700, 100) -> OpenSans-Semibold, 0, OpenSans-Semibold
    [Parsed_subtitles_0 @ 0000000002886860] fontselect: (Open Sans Semibold, 700, 0) -> OpenSans-Semibold, 0, OpenSans-Semibold
    [h264 @ 0000000002599e80] co located POCs unavailable:03.63 bitrate=1003.2kbits/s dup=0 drop=369 speed=2.73x
    Past duration 0.619041 too large  272502kB time=00:37:05.51 bitrate=1003.1kbits/s dup=0 drop=370 speed=2.73x
       Last message repeated 2 times
    Past duration 0.642845 too large
       Last message repeated 2 times
    Past duration 0.666664 too large
       Last message repeated 3 times
    Past duration 0.690468 too large
       Last message repeated 2 times
  • Revision f87e315e1e : Re-distribute hierarchical vector match pattern This commit modifies the hierar

    23 février 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Re-distribute hierarchical vector match pattern

    This commit modifies the hierarchical vector match patter. It
    avoids repeated SAD computation at same points. The function
    vp9_vector_sad_sse2 is called 12 times per 64x64 block, instead
    of 15 times as before. The effective coverage remains the same.

    Change-Id : I91ad9d27d40db8963c907d02af84e10702136994

  • How to use ffmpeg with h.265 (or h.264) codec ?

    6 octobre 2022, par randomuser1

    Normally I start recording the camera image with the command :

    



    ffmpeg -y -f vfwcap -r 25 -i 0 OUT.mp4

    



    but I'm not sure which coded do I use in here (I'm just beginning my adventure with ffmpeg), however I found on this webpage this command :

    



    ffmpeg -i INPUT -c:a copy -x265-params crf=25 OUT.mov

    



    But when I run it - I get the following error :
INPUT: No such file or directory"

    



    I changed the INPUT word above also to 0, so the command is

    



    ffmpeg -i 0 -c:a copy -x265-params crf=25 OUT.mov,
but error stays similar (0: no such file or directory).
How can I grab the camera image and save it to a file while using the H.265 ?