Recherche avancée

Médias (91)

Autres articles (106)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (11945)

  • ffmpeg play short video during playing another video

    10 mai 2016, par Szymek Świderski

    I want put and play scrap of short video during play another video in ffmpeg. I use this : ffmpeg -i 0.mp4 -i "prawo.mp4" -filter_complex "blend=all_mode='heat':all_opacity=0.3" output.mp4

    and i get this :

    First input link top parameters (size 1280x720, SAR 0:1) do not match the corresponding second input link bottom parameters (1920x1080, SAR 1:1)

    What should i do ? Any help ?

  • Trim video in Android using ffmpeg, audio and video not in sync

    8 novembre 2017, par Nidhin Radh

    I’m creating an Android application which process video files and I’ve used VideoKit library (https://github.com/inFullMobile/videokit-ffmpeg-android) to integrate ffmpeg with the application.
    I used the following snippet to trim a video,

                       Command command= videoKit.createCommand()
                                       .overwriteOutput()
                                       .inputPath(ipfile.getAbsolutePath())
                                       .outputPath(opfile.getAbsolutePath())
                                       .customCommand("-ss 10 -t 30 -vcodec "+
                                        "copy -acodec copy -async 1")
                                       .copyVideoCodec()
                                       .experimentalFlag()
                                       .build();
                               command.execute();

    Sometimes the output seems to be okay, but sometimes the video and audio are not in sync, i.e. video ends before audio. Most of the time this happens with videos downloaded from YouTube.
    Can someone give me an idea to trim videos in android without any problems ?

  • How to create video with dynamic pictures like Facebook Friend's Day video

    21 février 2019, par Vinicius

    How to create a video with pictures from a user just like Facebook does with their Facebook Friend’s day video ?

    Example : https://www.youtube.com/watch?v=mNWJ_XxfQfU

    The intention is to generate this sort of video with images that a visitor will upload to a website. FFMPEG does support images animation but it seems that a bit of 3d animations like the above needs ages to be done with FFMPEG. I wonder if there is an alternative to FFMPEG that can generate this sort of animations, or maybe a software like After Effects that can either generate a template that can be used on ffmpeg (or any command line alternative) or has its own command-line interface that can be executed in a linux machine to do such thing.

    Basically, the user would upload the pictures, the server would crop them to have the same size and then it would convert it to a video like the one mentioned above.