Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (47)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8732)

  • FFMPEG FLV to 3GP more then 176x144 size

    8 mars 2012, par Tom

    Hi all
    I am converting my.flv to my.gp3 with this command

    ffmpeg -i my.flv -acodec libamr_nb -s 176x144 -ar 8000 -b 120000 -vcodec h263 -ab 10.2k -ac 1 my.3gp

    but size of my flv is 320x240 and I am trying change 176x144 to 320x240 but getting 3gp file with 0kb , how can I do that and get my.3gp file with same size like my.flv

    And one more thing , the my.flv is product of converting from my.swf(vide) , if you know some command which will do swf->3gp with same size it would be better .
    Thanks a lot.

  • FFMPEG FLV to 3GP more than 176x144 size

    25 septembre 2012, par Tom

    Hi all
    I am converting my.flv to my.gp3 with this command

    ffmpeg -i my.flv -acodec libamr_nb -s 176x144 -ar 8000 -b 120000 -vcodec h263 -ab 10.2k -ac 1 my.3gp

    but size of my flv is 320x240 and I am trying change 176x144 to 320x240 but getting 3gp file with 0kb , how can I do that and get my.3gp file with same size like my.flv

    And one more thing , the my.flv is product of converting from my.swf(vide) , if you know some command which will do swf->3gp with same size it would be better .
    Thanks a lot.

  • how to customise images in frames of video using ffmpeg

    4 novembre 2014, par user946646

    I have video with static pictures and text. I need to update those static pictures with dynamic pictures and text. In the video, pictures are moving. Let’s say "Welcome Kavya" text is moving from left to right for first 1 second etc. I extracted frames of video using this
    command :

    ffmpeg -i /var/www/html/tutorials/v1.mp4 -r 20 -f image2 /var/www/html/tutorials/ffmpeg_temp/%05d.png

    Now I have 20 frames, and in each frame "Welcome Kavya" text is in different coordinates. I am taking each frame and updating the dynamic text according to static text coordinate and creating new video with dynamic content. This takes so much time and cumbersome.

    The video has many other texts and pictures to customize. Please advise me if any other way to do this.