
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (32)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (3520)
-
ffmpeg encode single input to multiple outputs simultaneously
23 août 2019, par jippyjoe4Suppose I have a single input file that I would like to transcode into two different formats (ProRes and Mp4). Individually, the two commands I would use look like this :
To convert it to mp4, I would use :
ffmpeg -i in.mov -c:v libx264 -x264-params "nal-hrd=cbr" -b:v 30M -minrate 30M -maxrate 30M -bufsize 60M "out.mp4"
And to convert it to ProRes, I would use :
ffmpeg -i in.mov -c:v prores_ks -profile:v 2 -bits_per_mb 540 -vendor apl0 -pix_fmt yuv422p10le "out.mov"
Rather than running these two commands sequentially to do the conversion, I think ffmpeg can encode to both formats simultaneously and save time. I’ve read this page (https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs), but I find it confusing. I tried something along the lines of :
ffmpeg -i "in.mov" \
-c:v libx264 -x264-params "nal-hrd=cbr" -b:v 30M -minrate 30M -maxrate 30M -bufsize 60M "out.mp4" \
-c:v prores_ks -profile:v 2 -bits_per_mb 540 -vendor apl0 -pix_fmt yuv422p10le "out.mov"But attempting to run this just gives me the error :
Unable to find a suitable output format for '\
I don’t quite understand what’s going wrong. How can I encode my single input to both outputs simultaneously ?
-
How to specify the GPU to be used by nvenc in ffmpeg [closed]
25 septembre 2022, par GioI'm using compiled ffmpeg executable for transcoding mpegts stream from h264 to h265 with nvenc. I have two nvidia Graphics Cards installed on my motherboard : GeForce GTX 690 and Tesla k-10. Is there any codec specific parameters for nvenc to choose the GPU I want to encode with ?


-
How to stream frames from ffmpeg to a process ?
7 mars, par VoracI would like to encrypt camera frames before transmitting. For that purpose the encrypting process needs to get the raw frames through some mode of IPC. I tried reading through the steaming API docs but got lost. This is an "what approach" question instead of a "working solution" one.