Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (69)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (7603)

  • Revision 33445 : Deplacement de inc-theme-head à la suite de habillage.css et ...

    1er décembre 2009, par shnoulle@… — Log

    Deplacement de inc-theme-head à la suite de habillage.css et impression.css pour surcharge

  • Creating personalized video from user submitted pictures and data

    18 décembre 2016, par Rajat Singhal

    Can someone guide me towards what technology to use to create personalized video from user submitted pictures and data.. The process has to be automated, as in server must be able to create a downloadable video from photos and text submitted by user..

    So the process will probably be like one video will be created by a hired artist, with placeholders where the user submitted pictures and text will fit in. Now with user submitted data video can be created and downloaded from the website..

    An example can be the videos created by facebook now-a-days on your birthday or year end. They consist some of your photos, some text and have a common video theme.. You can view one here http://newsroom.fb.com/news/2016/12/facebook-2016-year-in-review/

    One way I’ve found is to write the video code in html5 and then record it with phantomjs and ffmpeg.. http://mindthecode.com/recording-a-website-with-phantomjs-and-ffmpeg/

    But it seems a bit unnatural way of doing it.. And also I think not a lot of good artists are out there who can create the video theme in html5..

  • How to merge mp4 audio dash fragment with another audio

    19 décembre 2016, par mosvov

    I have 1 audio file from dash stream

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'file_191282-377206_header.mp4':   Metadata:

    major_brand     : iso6
    minor_version   : 1
    compatible_brands: mp42dashmsdhmsixiso6avc1isom
    creation_time   : 2016-04-29T11:04:26.000000Z   Duration: 00:00:30.02, start: 14.997333, bitrate: 49 kb/s
    Stream #0:0(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 48 kb/s (default)

    Also in exiftool output :

    Movie Data Size                 : 180193
    Movie Data Offset               : 6388

    I try to merge with another audio and save metadata info like Movie Data Size/Offset and start/duration time.
    I try with ffmpeg/MP4Box commands like :

    MP4Box -new -add file_191282-377206_header.mp4 -add out000.mp4
    ffmpeg -i file_191282-377206_header.mp4 -i out000.mp4 -codec copy -shortest output.mp4
    ffmpeg -i file_191282-377206_header.mp4 -i out000.mp4 -filter_complex amerge -ac 2 -c:a aac output.mp4

    All the time information erased or changed.

    So question is how to merge 2 audio files inside mp4 and not change Movie Size/Offset and start/duration time ?