Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (12880)

  • avformat/mvdec : handle audio sample size

    27 novembre 2021, par John-Paul Stewart
    avformat/mvdec : handle audio sample size
    

    Adds support for reading audio sample size from the data instead of
    assuming all audio is 16 bits per sample.

    Reviewed-by : Peter Ross <pross@xvid.org>

    • [DH] libavformat/mvdec.c
  • Flash, Google, VP8, and the future of internet video

    23 février 2010, par Dark Shikari — H.264, HTML5, Theora, VP8, google, x264

    This is going to be a much longer post than usual, as it’s going to cover a lot of ground. The internet has been filled for quite some time with an enormous number of blog posts complaining about how Flash sucks–so much that it’s sounding as if the entire internet is crying wolf. But, of [...]

  • Running Background Process using FFMPEG on Google Cloud Run stopping in middle

    7 juillet 2021, par pashaplus

    I have an external bash script that transcodes audio files using FFmpeg and then uploads the files to google cloud storage. I am using the google cloud run platform for this process but the process is stopping in the middle and not getting any clue from the logs. I am using the node js spawn command to execute the bash script

    &#xA;

        const createHLSVOD = spawn(&#x27;/bin/bash&#x27;, [script, file.path, file.destination, contentId, EPPO_MUSIC_HSL_URL, &#x27;Content&#x27;, speed]);&#xA;    createHLSVOD.stdout.on(&#x27;data&#x27;, d => console.log(`stdout info: ${d}`));&#xA;    createHLSVOD.stderr.on(&#x27;data&#x27;, d => console.log(`stderr error: ${d}`));&#xA;    createHLSVOD.on(&#x27;error&#x27;, d => console.log(`error: ${d}`));&#xA;    createHLSVOD.on(&#x27;close&#x27;, code => console.log(`child process ended with code ${code}`));&#xA;

    &#xA;

    on cloud run beginning the process itself taking a lot of time but in my local machine transcoding and uploading is very fast. after some time transcoding logs are being stopped and no new logs appear. I have no clue what is happening

    &#xA;

    Google Cloud run logs

    &#xA;

    so what is happening here ? why it is very slow in the first place and why the process is being stopped in middle without any error

    &#xA;

    node js script

    &#xA;

    Transcoding script

    &#xA;

    Dockerfile

    &#xA;