Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (48)

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

  • 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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (6920)

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