
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (80)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...)
Sur d’autres sites (11724)
-
ffmpeg -i not working when converting media files to mp4
14 août 2021, par outtobias0x9I'm using FFmpeg to convert my media file because It's a free source. But can't figure out how to use it. It takes one and a half hour just to troubleshoot but I totally messed up ! I went here to seek any help (I'm using windows 8.1 OS)




command : ffmpeg -i invalid ? why ?






I even tried New version 2021, but still "Missing argument for option 'i'


-
ffmpeg stops pushing stream of h264 frames to the media server after 180s (3 minutes)
19 décembre 2019, par blvvetMy purpose is to let tons of h264 frames play on the browser.
What I try to do is pushing these frames to the node-media-server(I also tried srs, still breaks down at 180s..So I think node-media-server should not be the problem) by ffmpeg and play it on the browser by flv.js. It works fine for the first 180 seconds and It always breaks down at 180s.
The node process keeps alive after 180s and the node-media-server receives nothing after 180s. So I think the problem may caused on ffmpeg. Since the number is always 180 seconds, I think maybe I did something wrong about the parameters of ffmpeg.
Thanks to everyone who gives a glance at my question
Here’s the code from the nodejs side :const spawn = require('child_process').spawn
const GET_FRAME = require('XXX') // just a cpp addon to get frame buffer encoded of h264
let args = [
'-i', 'pipe:0',
'-use_wallclock_as_timestamps', '1',
'-max_delay', '5',
'-r', '25',
'-c', 'copy',
'-preset:v', 'ultrafast',
'-tune:v', 'zerolatency',
'-f', 'flv',
'-g', '5',
'rtmp://127.0.0.1/live/test'
]
let $ffmpeg = spawn('ffmpeg', args)
setInterval(() => {
let $FrameH264 = GET_FRAME()
console.log($FrameH264) // buffers keep printing after 180s
$ffmpeg.stdin.write($FrameH264)
}, 1000 / 30) -
FFmpeg to Azure Media Services Smooth Streaming Input
22 juillet 2020, par Adityo SetyonugrohoI would like to ask about ffmpeg config or command to to mp4 fragment to Azure Media Service live event using smooth streaming / isml protocol. The AMS is not getting any input yet from ffmpeg.
This is my current running command :


ffmpeg -f dshow -i video="Webcam" -movflags isml+frag_keyframe -f isml -r 10 http://endpoint/ingest.isml/streaming1



When I am using RTMP with Wirecast is running well.


Any suggestion on ffmpeg command with isml protocol ?


Thank you