Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (26)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5095)

  • ffmpeg generated video with silent audio has different stream lengths

    18 septembre 2015, par JennHarper

    I am trying to generate a video clip of a single image and add a silent audio track for concatenating with other video files.
    I can successfully create the mp4 video with the desired image and audio track BUT, according to mediaInfo, the length of the video stream and the length of the audio stream are different. They are off by up to 60 ms. As I plan to concatenate several of these image clips and other video clips, I don’t want the error to accumulate. Any thoughts or suggestions for maintaining perfect video/audio sync ?

    Here are the ffmpeg commands that I am using :

    C :\FFmpeg\bin\ffmpeg.exe -loop 1 -i myImage.jpg -codec:v libx264 -t 7 -profile:v high -preset slow -r 25 -b:v 500k -maxrate 500k -vf scale=1280:720 -y videoStreamOnly.mp4

    C :\FFmpeg\bin\ffmpeg.exe -f lavfi -i anullsrc=r=48000 -i videoStreamOnly.mp4 -shortest -c:v copy -c:a aac -strict experimental -y videoWithSilentAudioStream.mp4

  • how to trim video in h264 format using ffmpeg while preserving quality ?

    16 décembre 2020, par prisonmike11

    I'm new to ffmpeg,

    


    I'm trimming a small clip from a bluray H264 video by providing start and end duration.

    


    I tried :

    


    ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4


    


    but this results in stuttering issues in start of the video. The audio and video also don't match.

    


    I tried using -c libx264 but this is taking too long and the output video has much lower bit rate.

    


    My goal is to trim as fast as possible while preserving quality. I don't care about the frame accuracy of the trim. I plan on uploading the output to youtube.

    


    what flags should I use ?

    


  • how to trim video in h264 format using ffmpeg while preserving quality ?

    16 décembre 2020, par prisonmike11

    I'm new to ffmpeg,

    


    I'm trimming a small clip from a bluray H264 video by providing start and end duration.

    


    I tried :

    


    ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4


    


    but this results in stuttering issues in start of the video. The audio and video also don't match.

    


    I tried using -c libx264 but this is taking too long and the output video has much lower bit rate.

    


    My goal is to trim as fast as possible while preserving quality. I don't care about the frame accuracy of the trim. I plan on uploading the output to youtube.

    


    what flags should I use ?