
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (44)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (5578)
-
Is it possible to make DRM-enabled videos through FFMpeg ?
10 mars 2017, par Davood FalahatiI’m using FFmpeg to convert my videos to be shown on website. Download managers however, download them and it keeps visitors away from spending more time in my website. Is it a way to use FFMpeg to generate DRM-enabled videos and/or any other ways to prevent download managers to download my videos ?
FYI : I use jwplayer to play my videos. -
About youtube-dl
30 octobre 2017, par 王延康As you all know, youtube-dl can download videos from youtube.com. Usually we use the directive e.g.
youtube-dl -f 266+140 www.youtube.com/xxxxxx
. Then youtube-dl will download the 266(only video) and 140(only audio) individually and then merge them with a wink.However, recently when I download a 4K HD video, the quality of the analyised audio only have 128kps. But I have the same audio at 320kps. I’ve tried only download the video without audio and use the ffmpeg to merge them. But the speed was so slow far less than the normal download ways.(266+140) So here comes the question, how can I use the youtube-dl and the ffmpeg to merge my video and 320kps audio quickly just like youtube-dl did ?
-
get error ffmpeg when running wdio-video-reporter in jenkins and centos
31 janvier 2024, par Ferawati Hartanti Pratiwii got this error when i run wdio-video-reporter on jenkins and the OS is centos 8




2024-01-31T17:54:56.047Z ERROR @wdio/config:ConfigParser: Failed loading configuration file:



file :///var/data/jenkins-slave/workspace/QE_Playground/web-testing-pr-only/test/support/wdio.conf.chrome.js :
undefined
Could not find ffmpeg executable, tried "/var/data/jenkins-slave/workspace/QE_Playground/web-testing-pr-only/node_modules/@ffmpeg-installer/linux-x64/ffmpeg",
"/var/data/jenkins-slave/workspace/QE_Playground/web-testing-pr-only/node_modules/@ffmpeg-installer/ffmpeg/node_modules/@ffmpeg-installer/linux-x64/ffmpeg"
and
"/var/data/jenkins-slave/workspace/QE_Playground/web-testing-pr-only/node_modules/@ffmpeg-installer/linux-x64/ffmpeg"




this is my jenkins env


environment {
 PATH = "/usr/bin/ffmpeg:$PATH"
 }



this is my wdio config


ffmpegPath: '/usr/bin/ffmpeg',
 capabilities: [
 {
 maxInstances: parseInt(process.env.MAX_INSTANCES, 10) || 3,
 specs: [
 `${process.cwd()}/test/**_${folder}/features/**/*.feature`,
 ],
 browserName: 'chrome',
 'goog:chromeOptions': browserOptions,
 acceptInsecureCerts: true,
 },
 ],