Recherche avancée

Médias (91)

Autres articles (74)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7069)

  • using FFMPEG in C# project [on hold]

    18 mars 2017, par Ahmad

    There is a Long process to use FFmpeg in C#. I have some Questions about it when i use it in c# project and make some software using it and give to some one all the things we install to setup Other person needs these things as well ? Is there any Other easy way to setup FFmpeg in c# Project. Which help us in giving some one our project.

  • The WebM Project

    19 mai 2010, par Basil Gohar — Announcements, Technology, google, matroska, vorbis, vp8, webm, webm project

    It is with great joy that Libre Video can share with you this announcement : “The WebM Project is dedicated to developing a high-quality, open video format for the web that is freely available to everyone.” The WebM Project is a … Read more (...)

  • From 2 videos create one split screen video, 2 separate audio streams and a thumbnail from the resultant split screen video - all in one pass

    27 avril 2020, par Ben Hardy

    I'm using ffmpeg to create several single splitscreen videos out of 2 separate videos. The 2 videos have audio so I want to extract the 2 video's audio streams as 2 separate mp3s and also create a thumbnail out of the finished splitscreen video. Is it possible to do these 3 actions in one pass ?
    
Here is the code I'm using to create the splitscreen and the 2 separate mp3

    



    ffmpeg -i input0.mov -i input1.mov -filter_complex "[0]scale=640x360[v0];[1]scale=640x360[v1];[v0][v1] hstack[v]" -map "[v]" output.mp4 -map 0:a audio0.mp3 -map 1:a audio1.mp3

    



    However I want to also create a thumbnail out of the resultant split screen video in the same pass, but if I add "image.jpg" at the end it only makes a thumbnail out of input1.mov not the resultant splitscreen video made from input0 and input1 and makes all the outputs only 1 frame long. Here is the code :

    



    ffmpeg -i input0.mov -i input1.mov -filter_complex "[0]scale=640x360[v0];[1]scale=640x360[v1];[v0][v1] hstack[v]" -map "[v]" output.mp4 -map 0:a audio0.mp3 -map 1:a audio1.mp3 image.jpg

    



    Is there a solution to this that will let me create all the correct outputs in one pass ?