Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (36)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5737)

  • ffmpeg glue 4 videos on split screen with preview

    18 janvier 2023, par rst630

    I have 4 video files 480x1080 with audio - all different duration.

    


    I need 1920x1080 video

    


    _____________________________________________
|          |          |          |          |
|          |   first  |  first   |  first   |
|   play   |   frame  |  frame   |  frame   |
|          |          |          |          |
---------------------------------------------

_____________________________________________
|          |          |          |          |
|          |   play   |  first   |  first   |
|   last|  |          |  frame   |  frame   |
|   frame  |          |          |          |
---------------------------------------------


    


    when first video done 2nd column video must start and first video must show just last frame, other left 2 videos still show first frame and wait queue

    


    for example lets say we have these durations :

    


    1.mp4 - 1:00
2.mp4 - 1:35
3.mp4 - 1:20
4.mp4 - 1:05


    


    Also I can prepare screenshots of each video for preview frames (first/last)

    


    Cant even imagine how to do this job with ffmpeg or maybe exists any simplier way for shell ?

    


    example of output video https://www.youtube.com/watch?v=vdBd5-8uOTo

    


  • FFMPEG binaries throw error : Undefined Symbols for Architecture x86_64

    19 octobre 2016, par Swati

    I have created a cocoa app that uses FFMPEG libraries for streaming.

    Uptill now i was using FFMPEG version 3.1.1 and i had libraries available to me. Now i downloaded the latest FFMPEG version 3.1.4.

    I executed the shell script and libraries were generated but when i use the with my xcode [6.1 or any] I get error as shown in attached image.

    Can anybody plz guide me about solving this issue.

    Thanks in advance..

    enter image description here

    Other Linker Flags :

    enter image description here

  • Heroku can't find ffmpeg install included in NodeJS app

    5 août 2020, par Literally

    I'm trying to run a ffmpeg command with the ffmpeg node package and it's working fine locally, giving me exit code 0 + the file, but when I publish the same code to Heroku it gives me error code 127 and does nothing.
This is the code I'm running, what could be wrong ? The files/ and ffmpeg/ directory is in the project root, but only files/ gets found on Heroku while both gets found locally.

    


    var ffmpeg = require('ffmpeg');
var spawn = require("child_process").spawn;
var pathToFfmpeg = ".\\ffmpeg\\bin\\ffmpeg"

var ffmpeg = spawn(pathToFfmpeg,
        `-i ./files/noaudio.mp4 -i ./files/music.mp3 -c:v copy -c:a aac ./editedfiles/output.mp4`.split(" "),
        { shell: true })

    ffmpeg.on('exit', (code, signal) => {
        console.log("ffmpeg shutdown: code " + code + ", signal " + signal)
    })