Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (83)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (15345)

  • ffmpeg on Heroku, EC2 : TypeError : Cannot read property 'on' of undefined , ffmpegProc.stdout.on('data', function(data) { ^

    27 avril 2020, par Vikram Sapate

    I'm using ffmpeg.exe to convert video to audio .
On local machine it works fine but when deployed on heroku server it throws error like....

    



    /app/node_modules/fluent-ffmpeg/lib/processor.js:190
 ffmpegProc.stdout.on('data', function(data) {
^
TypeError: Cannot read property 'on' of undefined

    



    Please help me ....!

    


  • Anomalie #4257 : Impossible de lire certaines descriptions XML et validation XML bloquée par écran...

    11 janvier 2019

    Je crois qu’on ne cherchera aucune solution pour l’analyseur XML en l’état.

    Il faudrait utiliser certainement http://php.net/manual/fr/domdocument.validate.php ou une lib externe spécifique ;
    Un moyen d’avoir la liste des erreurs : http://php.net/manual/en/domdocument.validate.php#85792

  • Is there a way to prevent black frames from appearing at the start of a video when using -c:v copy ?

    11 juillet 2023, par MethanE

    My task seems simple. Using ffmpeg in terminal, I'm trying to pass through the exact video settings minus the audio, and i've been successful, except for the fact that the videos start with a frame of black before the actual video plays.

    


    currently using this :

    


    for i in *.*;do ffmpeg -i "$i" -an -c:v copy "${i%.*}_noaudio.mp4";done


    


    My current thought is it may be related to the error I'm getting (the vid still exports), but I'm not certain :
Missing key frame while searching for timestamp : 1001

    


    Input video metadata :

    


    Metadata :
major_brand : XAVC
minor_version : 16785407
compatible_brands : XAVCmp42iso2
creation_time : 2021-09-12T20:13:46.000000Z
Duration : 00:00:17.52, start : 0.000000, bitrate : 107315 kb/s
Stream #0:0(und) : Video : h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 3840x2160 [SAR 1:1 DAR 16:9], 96798 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc (default)

    


    Googling led me to try not using -c:v copy as there might be a glitch related to h264 keyframes and instead using -c:v libx264 but i really don't want to have to re-encode as I don't want to lose any quality. The file I tried this on went from 135 mb down to 6.

    


    Thanks for your help. Kind of a newb at this.