Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (60)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

Sur d’autres sites (5540)

  • how to loop gif on mp4 video using ffmpeg on cent os

    4 octobre 2020, par Rif Rocket

    I am using this line of code to overlay the gif file on the mp4 file, when I am using this command on the windows machine its working fine but when I use this line of code on the centos7 server video gets pause after the first loop of Gif load on the video. I am using PHP7 for command execution.

    


    ffmpeg -y -i input.mp4 -stream_loop -1 -y -i loop.gif -filter_complex 'overlay=shortest=1: format=auto:  x=455: y=1050' output.mp4


    


  • How ffmpeg work on server for different type of users ? [on hold]

    7 août 2016, par sam

    I have a question about ffmpeg and I am using mac and xampp and php and jQuery. I make a function that upload video or image file or another type when I saw examples of ffmpeg in Stack Overflow. My questions are :

    1. client can be window user or mac or another than we have to download all different type of ffmpeg file for example ffmpeg.exe and mac can be another because when I saw how to download ffmpeg than they show me different operating system.

    2. And where we have to save ffmpeg file in xampp

    3. If I download all things for mac and I run it and it works and I make my website online and than any Windows user or Linux user will upload video it will work for him also. But we do not client download ffmpeg in their system

    If anybody know good example of create thumbnail for video please tell me.

  • FFmpeg : how to burn any kinds of subtitle into videos

    28 décembre 2017, par MinhLee

    as title, i want to encode hardsub some mkv videos which contain subtitles. These subs is maybe ASS, SRT or picture-based.
    I have read FFmpeg Document and stuffs, but only found the way to burn sub if the type of sub is known.

    I try to get subtitle info using mediainfo :

    mediainfo "--Output=Text;%Format%\r\n" input.mkv

    The output is "ASS" with ass , "Text" or "Subrip" or "UTF-8" with SRT....
    But i find it hard to keep going because of many kind of output i can get, which is still so hard to create a batch file to tell ffmpeg to auto dectected kind of subs so auto choose correct filter.

    Is there any ways to do this ? Thanks !