
Recherche avancée
Autres articles (67)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (6379)
-
Evolution #4417 : Augmenter la longueur du mot de passe demandé pour créer un nouvel auteur
24 décembre 2019, par cy_altern -complémentairement, pour compliquer le "brut force" des mots de passes, il y aurait l’utilisation d’un algorithme de hashage de type Argon2 (cf https://fr.wikipedia.org/wiki/Argon2) qui est conçu pour imposer un coût mémoire.
Voir https://github.com/p-h-c/phc-winner-argon2 pour les implémentations disponibles de Argon2 (PHP > 7.2 et JavaScript OK) -
FFmpeg mp4 to m3u8 but audio not working
30 septembre 2016, par Ravi KumarCommand I’m using
ffmpeg -y -i video.mp4 -vcodec libx264 -preset superfast -r 25 -vb 240000 -s
426x240 -aspect 1.77 -acodec libfdk_aac -ab 128k -ar 48000 -an -g 30 -r 30
-hls_time 3 -hls_list_size 0 -hls_allow_cache 1 -hls_playlist_type vod
-bsf:a aac_adtstoasc video.m3u8output shows "no audio"
anyone help what’s wrong in my command
Update
ffmpeg -i video.mp4 -c:v libx264 -c:a aac -strict -2 -f hls -hls_list_size 0 output.m3u8
i tried this command and its working fine, generating audio with m3u8, but i want to integrate it with my above command.
Thanks
-
Uncaught SyntaxError : Unexpected token ' ' using videojs - ffmpegjs plugin and multiple plugins issue
6 octobre 2020, par Muhammad FaheemI'm trying to use ffmpegjs plugin into videojs but getting error




"Uncaught SyntaxError : Unexpected token '<'".




Also don't know how to use multiple plugins in videojs. Wanna use ffmpeg along with ts-ebml.


This is how I'm using in videojs options :


options: {
 controls: true,
 bigPlayButton: false,
 loop: false,
 width: 600,
 height: 340,
 fluid: false,
 plugins: {
 wavesurfer: {
 backend: "WebAudio",
 waveColor: "#ffffff",
 backgroundColor: "#000000",
 barHeight: 3,
 progressColor: "white",
 debug: true,
 cursorWidth: 1,
 displayMilliseconds: true,
 hideScrollbar: true,
 plugins: [
 // enable microphone plugin
 WaveSurfer.microphone.create({
 bufferSize: 4096,
 numberOfInputChannels: 1,
 numberOfOutputChannels: 1,
 constraints: {
 video: false,
 audio: true
 }
 })
 ]
 },
 record: {
 audio: true,
 video: false,
 maxLength: 3600,
 debug: true,
 // enable ffmpeg.js plugin
 convertEngine: "ffmpeg.js",
 // convert recorded data to MP3
 convertOptions: ["-f", "mp3", "-codec:a", "libmp3lame", "-qscale:a", "2"],
 // specify output mime-type
 pluginLibraryOptions: {
 outputType: "audio/mpeg"
 },
 // use MP4 encoding worker (H.264 & AAC & MP3 encoders)
 convertWorkerURL: "../../../../node_modules/ffmpeg.js/ffmpeg-worker-mp4.js"
 }
 }
 }