
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (51)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang 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. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (9525)
-
Anomalie #2375 (Nouveau) : redirection d’une mauvaise url arborescente
17 octobre 2011, par James H.Avec les urls arbo : si j’ai une erreur de saisie dans la partie d’une sous-rubrique, on est renvoyé vers la page d’accueil du site au lieu d’avoir une page 404.
-
Bitrate with mp3 - Can I put whatever I want ? [closed]
5 juillet 2023, par AtyKlaxasI'm actually on a project to re-encode a large amount of audio files


all over the internet I see people encoding in 320k, 196k, 128k


If there is a rule for encoding values, what is it ?
Is there a reference table of encoding levels for mp3s ?
or i pur whatever i want ? (example 120k or 280k)


I've tried asking ChatGPT
I expect to get these answers


There's a reference table, you can't encode anything other than this : 320k, 256k, 196k, 128k (ect ...)


There is no reference table, but the rules that are not written down and accepted by everyone are : (explanation)
and this gives us a list of bitrates 320k, 256k, (...)


There are no rules at all, you can encode in any bitrate you like.
benchmarks such as 320k or 256k are only indicative and reflect nothing other than an arbitrary choice


-
Gitlab CI - Combine two docker images into a single stage
12 mars 2024, par seal.r00tI have this gitlab-ci.yaml file. Using this file I execute my k6.io load test from pipeline. Now I need to execute some FFmpeg commands during the run stage, and my question is how do I make the FFmpeg tool available to the run stage. Do I need to grab the image that has FFmpeg and add it next to grafa/k6 or something else ?


default:
 tags:
 - default

workflow:
 name: "$PIPELINE_NAME"

stages:
 - lint
 - setup
 - run
 - teardown

lint:js:
 stage: lint
 image:
 name: tmknom/prettier
 entrypoint:
 - ""
 rules:
 - if: '$CI_PIPELINE_SOURCE == "push"'
 when: always
 - if: '$CI_PIPELINE_SOURCE == "schedule"'
 when: always
 script:
 - prettier --check '**/*.js'

setup:
 stage: setup
 image: alpine
 rules:
 - if: '$CI_PIPELINE_SOURCE == "web"'
 when: always
 - if: '$CI_PIPELINE_SOURCE == "schedule"'
 when: always
 script:
 - echo 'set up!'

run:
 stage: run
 environment:
 name: run
 image:
 name: grafana/k6:latest
 entrypoint: [ "" ]
 artifacts:
 when: always
 paths:
 - summaries/
 rules:
 - if: '$CI_PIPELINE_SOURCE == "web"'
 when: always # Prevent pipeline run for push event
 - if: '$CI_PIPELINE_SOURCE == "schedule"'
 when: always
 script:
 - ./run.sh

teardown:
 stage: teardown
 image: alpine
 rules:
 - if: '$CI_PIPELINE_SOURCE == "web"'
 when: always
 - if: '$CI_PIPELINE_SOURCE == "schedule"'
 when: always
 script:
 - echo 'tear down!'



I tried adding two name tags under the run stage for using two images but it didn't work and returned a syntax error.


run:
 stage: run
 environment:
 name: run
 image:
 name: grafana/k6:latest
 name: linuxserver/ffmpeg