Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (6195)

  • Revision 35677 : ajout d’un parametre optionnel "retour" au formulaire spipicious

    27 février 2010, par brunobergot@… — Log

    ajout d’un parametre optionnel "retour" au formulaire spipicious

  • FFmpeg creates jerky video

    26 juin 2013, par DenisKo

    I have a lot of images that should be converted to video. Video will present a zoom effect, so each image a bit cropped. And when I do conversion, ffmpeg does what he should, but resulting video looks a little bit jerky. Image is changing at each frame. I think somehow this jerky effect related with sample rate or keyframes.. but don't know how.

    img_ps = 30

    zoom_duration = 15

    total_images = img_ps * zoom_duration

    ffmpeg -y -f image2 -r #{img_ps} -i img_%04d.jpg -crf 0 -preset ultrafast -qmin:v 2 -qmax:v 2 -b:v 25000k -minrate 25000k -maxrate 25000k -bufsize 5000k -tune stillimage -pix_fmt yuv420p -r 30000/1001 out.mp4

    I see it overlaps with other issue, but there is no answer to resolve the problem.
    Jerky Video from Jpgs encoded with ffmpeg

  • FFMPEG : Position images in video when creating slide show

    29 décembre 2015, par Jimmy

    I’m using FFMPEG shell utility in an Android app to convert users pictures to video, here’s an example command :

    cat *.jpg | ffmpeg -f image2pipe -r 10  -vcodec mjpeg -i - -vcodec libx264 -s 1280x720 -preset ultrafast slideshow.mp4

    I used to crop images when the user import it in the app but now I would like to allow the user to reposition the image later, here’s an example :

    enter image description here

    So the user could drag or zoom the image to position it in the clear area (video ratio).

    So using the ffmpeg shell command can I specify the image coordinate for each image and position the image in the video.