Recherche avancée

Médias (91)

Autres articles (85)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7147)

  • ffmpeg playback speed lost on re-encoding

    30 octobre 2018, par Salman Muhammad

    so I am trying to encode a video using myffmpeg with the following custom command to increase the playback speed by 10 times

    -filter_complex "[0:v]setpts=PTS/10[v];[0:a]atempo=10.0[a]" -map "[v]" -map "[a]"

    all goes well and the playback speed in output file is indeed 10x the original speed. however, when I use this output file as a source file for another encode job (or just a conversion to another format job) it loses the speed (goes back to normal). I’m not sure what I’m missing here as I am a beginner :) hoping for some help here.

  • Add blank frame if input connect lost in ffmpeg

    12 mai 2019, par vu tran

    I am trying to dump a rtmp stream to mp4 file every 30 minutes using command : ffmpeg -i "rtmp ://abc/app/live" -vcodec copy -t 1200 "test.mp4" . It work well but in case the stream connection is lost, ffmpeg will stop. Is there a way to keep connection and add blank frames to output if connection is lost and add correct frames from stream back output if connection comeback ?

  • FFMPEG join multiple video lost audio

    23 août 2018, par Ankur Tripathi

    I am trying to join 2-3 videos it’s working when all video has audio or without audio...

    Command= "-f concat -i files.txt -codec copy output.mp4"

    File.txt

    file ’0.mp4’

    file ’1.mp4’

    file ’2.mp4’

    Now the issue is when 0.mp4 is without audio and 1.mp4 is with audio and when i join these videos full audio lost in output.. output will be without audio.

    I want this join with all as it is like if 0.mp4 without audio then audio will not play for this and 1.mp4 play audio should play...