Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

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

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

  • FFMPEG mp4 instead of flv

    20 juin 2013, par Scott Stevens

    really struggling with ffmpeg at the moment, after a few days of messing about with it i have managed to get it to almost do what i want !

    I have an audio track and a series of images that are to be converted into a slideshow displaying each image for 5 seconds.

    ffmpeg -r 1/5 -i C :\ffmpeg\image-%02d.bmp -i C :\ffmpeg\music.mp3 -qscale:v 2
      -shortest -codec:a copy C :\ffmpeg\output.flv
    

    I can get this to work as a flv but not as any other format. I need to have it in either an mp4, avi, wmv, or mov format.

    I can convert this to a wmv but the file size is HUGE (about 100meg/min) !

    ffmpeg -i C :\ffmpeg\output.flv -vcodec wmv1
      -acodec adpcm_ima_wav C :\ffmpeg\output.wmv
    

    Can anyone please help me either

    • output the original code to mp4,wmv,mov,or avi (with a reasonable file size
      ideally less than 10 meg per min)
    • convert the flv to either an mp4,wmv,mov, or avi with again a reasonable
      file size)
  • Crossfade between images in video using ffmpeg in android

    11 septembre 2015, par vishnus

    I have managed to create a video from a series of images using this ffmpeg library ffmpeg-android-java

    My command to generate the video is

    "-y -r 1/3 -i /path/img%d.jpg  +
     "-strict experimental -vcodec libx264 -pix_fmt yuv420p -preset ultrafast -t 21 -crf 30 /path/out.mp4"

    In my case each image is shown for 3 seconds in the video and video is made of total 7 images.

    I want to achieve a crossfade effect when the images change in the video.

    If anyone has done this before then please point me in the right direction.

  • ffmpeg webm vs mp4 quality issue

    17 juillet 2014, par Benjamin

    I have a series of .jpg files in a directory that I want to turn into the movie with ffmpeg. When I make a .mp4 file of all the jpegs, the video quality is pretty much the same as the original images. When I make a .webm file though, it looks very blocky. These are the two commands I’m using :

    $ ffmpeg -i %10d.jpg -s 640x480 -r 16 test.mp4

    $ ffmpeg -i %10d.jpg -s 640x480 -r 16 test.webm

    I know next to nothing about video encoding so any help would be appreciated.