Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (65)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Convert ts to mp4 with C++ code of FFMPEG

    28 mai 2016, par M.Taha

    I am stuck with conversion of ts file to mp4 file. I am able to convert ts file to mp4 file in ffmpeg with ffmpeg.exe and it’s command line.

    But I have to do ts to mp4 conversion with C++ code using FFMPEG. I am trying to do this but not succeeded from last 5 days.

  • Is there a factor in ffmpeg code that cuts video time ?

    13 janvier 2020, par user12263143

    Im using ffmpeg to change resolution of video file and after conversion to another location the video lasts 0 seconds, but originally it lasts 2mins
    My ffmepg code :

    ffmpeg -i input.mp4 -filter:v scale=480:320 -t 5 output.mp4
  • How can i create ffmpeg code with video and audio filter in one command line

    15 septembre 2014, par aligokayduman

    i can add a background image behind the video and change scale and position with this code

    ffmpeg -loop 1 -i 360.png -i input.mp4 -filter_complex "[1]scale=362:218[over]; [0][over]overlay=200:117" -shortest -y output.mp4

    and i can change audio and volume speed %10 faster

    ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.9*PTS[v]; [0:a]atempo=1.1[a]" -map "[v]" -map "[a]" output.mp4

    i wanna do this 2 step in one code but i couldn’t do that

    Do you know any solution ?