
Recherche avancée
Autres articles (1)
-
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)
Sur d’autres sites (2152)
-
Anomalie #3235 : SPIP (3) génère la classe "spip_out" sur des liens relatifs
4 octobre 2014, par RastaPopoulos ♥Je viens de tester cette liste de lien :
Un lien intelligent vers la rubrique 1 Un lien bête vers la rubrique 1 Un lien vers le RSS Un lien vers le plan du site Un lien vers un site externe
Le site externe a bien "spip_out".
Le lien intelligent a bien "spip_in".Mais tous les autres n’ont plus rien ! Ni l’un ni l’autre. C’est déjà ça qu’ils n’aient pas "spip_out", mais ce sont bien des liens internes ! Si dans le thème du site je style différemment "spip_in", alors ces liens qui sont bien internes ne s’afficheront pas correctement. Il faut donc effectivement compléter les tests sur ce point.
Ce qui est compliqué c’est que dans les tests il y a le cas d’un sous-dossier ("/tests/") et là on peut effectivement considérer que ce n’est pas forcément interne (il peut y avoir un autre site différent en sous-dossier). En revanche tous les liens de ma liste ci-dessus sont bien internes.
-
Codeigniter - exec ffmpeg (win 8.1 with xampp)
31 août 2014, par xelAi want to merge some image files (jpeg,png) to a short stop motion video clip.
The User can upload the images and the webapp will do a short movie... Thats the plan.
I have tried some variations i found in www -> exec, shell_exec
The ffmpeg.exe is in my root Folder (xampp/htdocs/xxx/ffmpeg.exe)
I put a function in my controller to do the clip.
public function render() {
// Save the Session ID into the variable sessionId
$sessionId = $this->session->userdata('session_id');
// Path to the Userimage-Folder
$image_path = "C:\xampp\htdocs\xxx\uploads\$sessionId";
$command = "C:\xampp\htdocs\xxx\ffmpeg -framerate 1/5 -i".$image_path."/img_%03d.JPG -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4";
exec($command);
}The images are already in the same format and have a consecutive numbering.
I’am still a beginner, so please help me.
regards :)
-
FFMPEG Wrapping a raw video stream with OGG (or another wrapper)
9 juillet 2014, par CykonI’m building an application which takes in a rawvideo stream (piped in from an ffmpeg instance), manipulates and reads the raw video data, and pipes the output to another ffmpeg instance for encoding. Everything works great, however I’ve been trying to think of a solution which would allow audio to be sent into my program as well.
The Ogg container seems to have a great C library, and it appears as if there has been some movement to add support for raw video https://wiki.xiph.org/OggRGB
My plan was to pipe in a stream formatted for Ogg, use libogg to demux it, after parsing through the video data and manipulating it... use libogg again to encode and pipe out.
Unfortunately, FFMPEG throws an "Unsupported codec id in stream 0" error when asked to output OGG with rawvideo.
My test ffmpeg command is as follows :
ffmpeg.exe -i fs0.mp4 -f ogg -c:v rawvideo -pix_fmt rgb24 -s 192x144 -
Any solutions, or alternative solutions are welcome. As a side note, my program has the ability to take in multiple videos at once and outputs a combination of the inputs.