Recherche avancée

Médias (91)

Autres articles (87)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (8936)

  • Revision 20cf22a128 : Enforce effective motion vector search range This commit explicitly enforces th

    21 janvier 2014, par Jingning Han

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



    Enforce effective motion vector search range

    This commit explicitly enforces the effective motion vector range
    in the motion search stage. The range needs to be the intersection
    of UMV border, effective absolute motion vector value range, and
    the target search area.

    Change-Id : I1cf7c563e02b1086040dad6c1f4f6be1538635a6

  • FFmpeg-generated .m2v file shows strange video length

    15 août 2016, par John Doe 2

    I created a .m2v file using ffmpeg like this :

    ffmpeg -framerate 1/300 -s 720x576 -i img%3d.jpg -c:v mpeg2video -b:v 2000k -r 5 video.m2v

    This worked successfully, but if I right click on the .m2v file and go to details and scroll to video length I get this information which is really strange ( Using Windows 10) :

    Video

    Length: 256204778:48:05

    If I run the .m2v file with a program like PowerDVD the length of the video is 5 minutes long.

    Why does this happen ?

  • ffmpeg is cutting video length incorrectly

    1er mars 2018, par jameshwart lopez

    I use ffmpeg to check the length of the video and to cut video.

    I have a video with the lenght of 19.458333 seconds that’s why i want to cut it to only have 19 seconds because i don’t want the floating point.

    I check the video length using below command

    ffprobe -i "video.avi" -show_entries format=duration -v quiet -of csv="p=0"

    And I use below command to cut video the video

    ffmpeg -i  "video.avi" -ss 00:00:00 -t 00:00:19.000 -c copy out.mp4

    or

    ffmpeg -i  "video.avi" -ss 00:00:00 -t 19 -c copy output.avi

    The problem i have is when i cut the video with the above command and check the length the output file’s length is 19.018 seconds. Can someone help me with this problem ?