Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (41)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

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

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

  • Video was encoded with a new width + height along with the old one. Can I re-encode with just the old dimensions using ffmpeg ?

    14 novembre 2019, par Kabir

    I’ve got a video out of OBS that play’s normally on my system if I open it with VLC for example, but when I import it into my editor (Adobe Premiere) it gets weirdly cropped down. When inspecting the data for the video it’s because for some reason the video gets encoded with a new width and height over top of the old one ! Is there a way using ffmpeg to re-encode/transcode the video to a new file with only the original width and height ?

    enter image description here

    Bonus question : would there be a way for me to extract the audio channels from my video as separate .mp3s ? There are 4 audio channels on the video

  • Add ’audio/mp3’ and related MIME checks for flash, correct edge case where play({type :’audio/mp3’}) would use HTML5 when preferFlash = true due to seeming lack of Flash support for the MIME type.

    24 juin 2012, par Scott Schiller

    m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js Add ’audio/mp3’ and related MIME checks for flash, correct edge case where play(type :’audio/mp3’) would use HTML5 when preferFlash = true due to seeming lack of (...)

  • FFMPEG fixing broken or wrong video containers extensions

    16 juin 2016, par C0nw0nk

    With ffmpeg what is the correct way to fix incorrect file containers.

    For example :

    We have a input.avi file but the file should be called input.mp4 because the person who uploaded it has renamed it from .mp4 to .avi will ffmpeg’s copy command fix this for us and allow the input.avi to keep its .avi file extension or will it need to become .mp4

    Command Line :

    ffmpeg.exe -y -i input.avi -c:v copy -c:a copy output-fixed.avi

    I read that ffmpeg’s stream copy -c:v copy -c:a copy or -vcodec copy -acodec copy or -c copy command should fix any error with any video container.

    I just want to fix the file by keeping it in the original file extension it was provided in do not want to change it to be .mp4 if it was not uploaded with that extension.