Recherche avancée

Médias (91)

Autres articles (29)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (4292)

  • ffmpeg : size stretched no matter what i put in "-s WxH"

    18 mai 2012, par Crazy_Bash

    I want to convert videos from .avi to .flv but i have problem the video image being stretched regardless of different size !

    this is the code i'm using
    ffmpeg -i "$avi" -y -acodec libfaac -ab 128k -vcodec libx264 -b 300K -bt 600k -s 704x400 -threads 0 -f flv "$flv"

    I can put -s 704x100 or leave the same size
    and it's still stretched. the original video comes with black bars on top,left and right, after i convert the video i don't see them

    here's before after pics
    http://fastpic.ru/view/38/2012/0517/9bf86409d23a3c008050ab1cf70af916.png.html
    http://fastpic.ru/view/38/2012/0517/55b7fd5dee90942a724bd4febd33f586.png.html

  • FFMPEG Error -1414092869 : Immediate exit requested

    8 juillet 2019, par Manity

    Hello i am using ffmpeg to play 4 videos at the same time.
    I am using a wpf/c# .net 4.7.2 wrapper for ffmpeg to do this.

    Occasionally get this error message, and the application just shuts down.
    there are no errors or exceptions thrown other than this one logged.

    Error -1414092869 : Immediate exit requested

    I have searched for a meaning to this error but can find nothing other than a vague reference to an android video player which does not provide me with any information at all.

    Can anyone shed any light at all, anything at all on the meaning of and cause of this above error and how it might be resolved ?.

  • FFMPEG Transcode MP3 to MP4 and then stream

    27 juillet 2018, par Sam

    I have an MP3 stream with meta data (That I need to keep) and I need to transcode
    it into AAC+ MP4. I then need to stream this MP4 to a Shoutcast server.

    The current line that I have is :

    ffmpeg -re -i http://Input Server IP And Port -b:a 128k -ar 44100 -c aac -f mp4 http://output server IP and Port

    I will get an error saying :

    [mp4 @ 000002700de16dc0] muxer does not support non seekable output
    Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument
    Error initializing output stream 0:0 —

    Think Internet radio show.

    If I have gotten this completely wrong, please tell me, and if anyone could shine some light onto this, that would be great. Thanks.