Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (40)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

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

Sur d’autres sites (6183)

  • Save Slow motion video with ffmpeg on android devices

    25 mars 2017, par nkalra0123

    I want to save videos in slow motion through my android app.I tried to convert videos into slow motion by changing frame rate.

    I used the following commands,first command is dumping 30 frames per second from videos to a temp directory, and then second command is using these images to create a video with reduced or faster frame rate and then i am deleting all the images from temp directory.

    ffmpeg -i input_file.mp4 -r 30/1 img%03d.png

    ffmpeg -framerate 15/1 -i img%03d.png -r 30 -pix_fmt yuv420p out4.mp4

    But this is a very slow operation. It is taking like forever even for small videos.

    I even tried to change PTS(presentation time stamp) of videos, but it is not working properly on android phones
    using this command :

    ffmpeg -i input.mkv -filter:v "setpts=2.0*PTS" output.mkv

    as suggested here :
    https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video

    Can anybody suggest me how can i make it fast. Is it necessary to save frames to a temp directory, can i pass the output of ffmpeg process to another ffmpeg process executing concurrently through some method.

    Is there any other ffmpeg command to save the videos in slow motion ?

  • Revision 4ccfc7d517 : Save an extra call for setup_pred_plane function Reuse the yv12_mb array to fet

    4 février 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_pickmode.c



    Save an extra call for setup_pred_plane function

    Reuse the yv12_mb array to fetch the buffer pointers/strides
    corresponding to the current reference frame.

    Change-Id : I5276b7494158b2cccef15213be2dc189e9036851

  • Adding metadata to mp3 file by PHP-FFMpeg doesn't save

    17 août 2017, par saeedhbi

    I’m using PHP-FFMpeg plugin for converting and saving mp3 files uploaded to my server and everything works great but metadata.

    This is my code

    $ffmpeg = FFMpeg\FFMpeg::create();
    $audio = $ffmpeg->open($file_tmp);
    $f_audio = new FFMpeg\Format\Audio\Mp3();

    $f_audio->setAudioKiloBitrate($new_bitrate);

    $audio->filters()->addMetadata(["title" => 'my title']);

    $audio->save($f_audio, $path);

    File is created by custom bitrate but none of metadata has been assigned to file.

    Thanks for your help.