Recherche avancée

Médias (91)

Autres articles (72)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8823)

  • avcodec/libx264 : Don't unnecessarily add in-band extradata

    20 décembre 2021, par Andreas Rheinhardt
    avcodec/libx264 : Don't unnecessarily add in-band extradata
    

    The check here is meant to check for whether avcintra-class option
    (default value -1) has been set ; yet it checks for the x264_param_t
    value where 0 is the default value (treated as "no avcintra-mode"
    by x264). This meant that in-band extradata has been added unnecessarily
    when using global headers ; furthermore, the first output packet
    had two x264 SEIs.

    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/libx264.c
  • avformat/movenc : initialize pts/dts of timecode packet

    14 mars 2022, par Limin Wang
    avformat/movenc : initialize pts/dts of timecode packet
    

    Fix below error message when timecode packet is written.
    "Application provided duration : -9223372036854775808 / timestamp : -9223372036854775808 is out of range for mov/mp4 format"

    try to reproduce by :
    ffmpeg -y -f lavfi -i color -metadata "timecode=00:00:00:00" -t 1 test.mov

    Note although error message is printed, the timecode packet will be written anyway. So
    the patch 2/2 will try to change the log level to warning.

    Fixes ticket #9488

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/movenc.c
  • avformat/mpegtsenc : make first_pcr sync with the first valid dts

    26 octobre 2020, par Limin Wang
    avformat/mpegtsenc : make first_pcr sync with the first valid dts
    

    now first_pts assume dts will start from zero, if it's not true(copyts is enable),
    too many null packet will be inserted for cbr output.

    Please test with below command, you'll get huge test.ts without the patch :
    ./ffmpeg -y -copyts -i ../fate-suite/mpegts/loewe.ts -c:v libx264 -x264opts \
    nal-hrd=cbr:force-cfr=1 -b:v 3500k -minrate 3500k -maxrate 3500k -bufsize \
    1000k -c:a mp2 -muxrate 4500k -vframes 1000 test.ts

    Reviewed-by : Marton Balint <cus@passwd.hu>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/mpegtsenc.c