Recherche avancée

Médias (91)

Autres articles (97)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (11099)

  • ffmpeg conversion for apple tv

    24 janvier 2013, par Sam

    I have one particular movie file that is giving me grief while I am trying to convert my movie library to be able to be viewed on my Apple TV. I have been using iFlicks to convert all of my files and have only had one issue. The original of this particular movie file plays fine but after it has been converted the video freezes after a few minutes but the audio keeps playing. I tried using ffmpeg to convert the file but now the file is very choppy. The first time it is played the video will be choppy, the next time the audio will be choppy... but it plays fine in VLC for some reason. So I was thinking that maybe I have chosen the wrong codecs to suit Quicktime/Apple TV. Below is the command I used for ffmpeg. Have I chosen the right codecs and actually written the command correctly ? (I haven't really used ffmpeg before...)

    ffmpeg -i input.avi -vcodec libx264 -acodec libfaac output.m4v
  • FFMPEG (windows7) can't get the output video to show more than 3 out of 10 jpgs

    26 octobre 2015, par Brooks

    I have 10 jpg files (image0.jpg, image1.jpg, image2.jpg ... image9.jpg) and one .mp3 and I’m trying to create a video but I can’t get it to show more than the first 3 images in the output.

    I played with the output -r option and for example if I change it to 30 it shows all of them but very fast so the whole video plays for under a second.

    This is my code :

    ffmpeg -i image%d.jpg -i audio.mp3 -r 1 -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -r 1/5 -pix_fmt yuv420p -shortest out.mp4

    What am I doing wrong ?

  • FFMPEG multiple .jpg to .mp4 - different slide lengths in output

    25 octobre 2015, par Brooks

    I have 6 .jpg files in a folder and using the code below I get a video in which each .jpg plays for 5 seconds so the video has 30 seconds in total.

    How can the code be altered so the first slide to have a different playtime (8 seconds) than the rest so the total output video length to be 33 seconds ?

    ffmpeg -i audio.mp3 -framerate 1/5 -i image%d.jpg -c:v libx264 -qscale:v 1 -shortest -s:v 640x480 -tune stillimage -c:a aac -strict experimental -b:a 192k -pix_fmt yuv420p -filter_complex "[0:a]volume=1[aout]" -r 25 -map 1:v -map "[aout]" out6.mp4