Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (60)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (9714)

  • ffmpeg Video progressive automatic zoom in and out [on hold]

    21 août 2019, par yong

    I need to implement the effect of zooming in and out for video.

    Two operations are needed. The first operation is to set the zoom to zero at the beginning of the clip, and by the end of the clip the zoom was gradually increased twice.

    The second operation is that at the beginning of the video the zoom is equal to two, and by the end of the video the zoom should be zero.

    That is, it is necessary for the zoom to increase / decrease smoothly throughout the entire duration of the video.

    I know that Zoompad effect is used for this, but I could not use it for video.

    Thank you all in advance for your help !

  • How To Convert Bit Rate (VBR) Of MP3 File Using PHP ?

    29 avril 2014, par Dave

    Using php, I am trying to convert and overwrite an mp3 file using the following command....doesn’t work.

    ffmpeg -i /Users/MacBookPro/Desktop/dragons.mp3 -ar 44100 -ab 128k -f mp3 /Users/MacBookPro/Desktop/dragons.mp3

    So even when I try the command from the terminal, the new mp3 file is only about 5 seconds (originally 3 minutes). What am I doing wrong & any ideas on how to get the command working ?

    Thanks in advance !

  • ffmpeg live stream sound desynch

    26 août 2017, par greg

    I’m trying to use ffmpeg to re-encode a live rtmp stream like this :

    ffmpeg -stream_loop -1   -r 25 -i rtmp://127.0.0.1:1935/live/input -c:a aac -b:a 128k -vf scale=600:356  -c:v libx264 -vprofile baseline -b:v 500K -f flv rtmp://127.0.0.1:1935/live/test

    It’s working but the sound is about 2 seconds late over the video.

    What can I do to fix this ?

    Thanks in advance