Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (68)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (13218)

  • ffmpeg avcodec_get_frame_defaults was declared deprecated [on hold]

    14 avril 2019, par n2v2rda2

    To make ffmpeg simple player

    I refer to ffmpeg sample code
    (https://github.com/phamquy/FFmpeg-tutorial-samples/blob/master/tutorial03.c)

    In window 7 with visual studio 12

    First I made cmd-project, all link, and complie is OK

    But when I press F5 in vs12

    **1>ConsoleApplication1.cpp (141): error C4996: 'avcodec_get_frame_defaults': was declared deprecated
      Failed | ConsoleApplication1\ConsoleApplication1.vcxproj [Debug|x64]**

    What happen with me ?

    I download latest ffmpeg DLL again, but noting is changed

  • Writing video with x264 Fourcc in Videowriter class in opencv

    28 janvier 2015, par Kausic Gunasekkar

    I wanted to do a very simple project of giving a program an input video which is saved in the same directory as "my_video" without any processing steps. I specifically want to use the H.264 compression format. Hence I chose ’X’,’2’,’6’,’4’ Fourcc and the program popped out the following errors.

    broken ffmpeg default settings detected
    use an encoding preset (e.g. -vpre medium)
    preset usage : -vpre -vpre
    speed presets are listed in x264 —help
    profile is optional ; x264 defaults to high
    Could not open codec ’libx264’ : Unspecified error

    So how do I install libx264 and configure it to work with opencv.I tried setting the fourcc value to -1 to do it by hand but no Window popped up requesting me to choose one of the available codec.( isn’t that supposed to happen).

    any help would be appreciated.

  • ffmpeg causing wrong duration on a converted .m2v video ?

    10 octobre 2022, par VILEWORX

    I've been using ffmpeg to convert .mp4 videos to an extremely specific .m2v format for a modding project using the following command :

    


    ffmpeg -i input.mp4 -profile:v high -codec:v mpeg2video -b:v 4000k -vf scale=512:480,colorspace=smpte170m,fps=60 -map 0 -map -0:a -maxrate 4000000 -bufsize 655360 output.m2v

    


    However, the start and end points of the output are not the same as my input file (29 seconds). ffprobe shows "Duration : N/A, bitrate : N/A".

    


    Strangely, the video duration is correct when loaded in Adobe After Effects, is slightly shorter in QuickTime Player, and is only 8 seconds according to Windows File Explorer (on my friend's computer). I suspect the lack of duration and bitrate displayed by ffprobe may have something to do with it, and this doesn't happen with any other format I've tried converting to.

    


    Does anyone know how to fix this ?