Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (41)

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

  • 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

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (5005)

  • FFMPEG Concatenate multiple videos causes : Too many invisible frames

    2 décembre 2019, par Silmood

    i’m trying to concatenate multiple .webm files in a single one. One of these files is a simple black video generated with the next command :

    ffmpeg -f lavfi -i color=c=black:s=1920x1080:d=5.2 black.webm

    Then this is concat_list.txt

    file 'black.webm'
    file '1.webm'
    file '2.webm'
    file '3.webm'

    Finally i try to concatenate files with :

    ffmpeg -f concat -i concat_list.txt -c copy video.webm

    The result is a long list of this message :

    [AVBSFContext @ 0x7fcecef00180] Too many invisible frames
    [AVBSFContext @ 0x7fcecef00180] Failed to receive packet from filter vp9_superframe for stream 0

    Complete log

    The problem seems to be the black.webm file. I removed it from the concat_list.txt and everything works fine.

    It’s important to mention that none of these files has an audio stream.

  • formula to calculate video dimensions for target aspect ratio

    23 avril 2015, par Nevoxx

    i currently building an application that converts videos to a specific dimension under consideration of the target aspect ration.

    the target resolution must always be 1280x720, i want to fit the uploaded video in this size using black bars.

    can anyone point out a formula to calculate the target video dimensions without changing it’s aspect ratio ? if the target with is smaller then 1280x720 i’ll add the missing pixels as black bars.

    i’m using ffmpeg with the "-vf scale=1280x720,pad=?:?:black" command

    (sorry if my english is not that great)

  • Video stream analysis on the fly - advise ?

    12 août 2020, par jakkolwiek

    I'm planning to develop a simple solution that would able me to perform a very basic video stream analysis on the fly. I've never done anything like that before, hence the very general and open question. The main focus is on checking if the stream is going without problems like - freeze frames, black screens and if the audio is there. Sync is out of scope. I read about open libraries like OpenCV and Xuggler, but they seem more complex than for my needs. FFmpeg is able to detect black screens, but not on the fly.

    



    Is there any other open lib I could look into ? Could you advise me anything ? I'm thinking about using Java or Python. Or maybe both. Efficiency of the solution is out of scope, I'm focusing now only on freeze frames and black screens detection.

    



    Any advise is welcome !

    



    Best regards, 
Peter