Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (97)

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

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10673)

  • Setting duration is not working in ffmpeg

    7 mai 2014, par Stepan

    Have problem with creating video from 50 png files in ffmpeg in shell.
    Setting duration -t 5 and fps -r 10

    ffmpeg -i image%d.png -y -pix_fmt yuv444p -r 10 -t 5 -s 1920:1080 out.mp4

    Final duration is 2 seconds and fps is 25.

    How to set it correctly ?

    I’m running at elementaryOS, ffmpeg version 0.8.10-4

    Thanks

  • FFMPEG [SHELL CMD] cutting last x frames [SHELL CMD] combining videos

    25 avril 2014, par user1708604

    .mp4 videos in 1920 x 1080, 25 frames / second
    different length

    Two commands needed :

    0) One command should delete x frames from the end of the video and create a new video without the last x frames as .mp4, save it in folder y
    1) One command should combine x amount of videos to one new video

    Just for info : I am using Python to call ffmpeg.
    Platform : Windows or CentOS.

    Many thanks in advance. :)

  • Create 1080p videos with javacv and ffmpeg or alternate lib

    20 novembre 2012, par 501 - not implemented

    is there a option in JavaCV to capture 1080p videos from images ?
    If i use the FFmpegFrameRecorde, i only find 480p.

    Or is there a alternate library for Java ?
    I want to use it to create a video from kind of pictures (with zooming and rotating effects)

    greetings

    //EDIT

    Okay,
    now i've tested a very simple code :

       FrameRecorder  recorder = FFmpegFrameRecorder.createDefault("out.avi", 1920, 1080);
       recorder.start();
       recorder.record(iplImage);
       recorder.stop();

    and it's works ! But the file is very large (10sec around 300MB...)

    Now i want to add a codec like xvid. I've get the following eyxception :

    com.googlecode.javacv.FrameRecorder$Exception: codec not found

    But i've installed the xvid paket. Must i add the codec in a special folder like the ffmpeg bin ?