
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (69)
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (9753)
-
How to add audio of both the video when overlaying one video over the other in FFmpeg ?
22 juillet 2022, par Sanyem NazkaniI want to overlay V1 video over D2 video and want to use the audio of both V1 and D2. Can someone please help me in this ?


ffmpeg -i D ://python/E1.mp4 -i D ://python/V1.mp4 -filter_complex "[1]setpts=PTS-STARTPTS+10/TB[top] ;[0:0][top]overlay=275:300:enable='between(t,18.20,27.10)'[out]" -shortest -map [out] -map 0:1 -pix_fmt yuv420p -c:a copy -c:v libx264 -crf 18 D ://python/Output.mp4


-
How to get video size of compressed video by ffmpeg ?
28 septembre 2017, par Mani KandanHi we are using ffmpeg for compressing the video through php script, now what i need is i want to get the video size of compressed image, but am getting an video path so kindly guide me how i need to over come this ?
Below is the code what i used for compressing the video
original path
$path = "sample.mp4";
Command to compress
exec("ffmpeg -i sample.mp4 -vcodec h264 -acodec aac -strict -2 compressed_video.mp4);
The command what i used for getting video size
$compressed_video_information = exec("ls -h1 compressed_video.mp4);
echo $compressed_video_information;I get just file path instaed of getting video file size, so someone help me how to overcome this issue ?
-
How to get video size of compressed video by ffmpeg ?
14 juillet 2016, par Mani KandanHi we are using ffmpeg for compressing the video through php script, now what i need is i want to get the video size of compressed image, but am getting an video path so kindly guide me how i need to over come this ?
Below is the code what i used for compressing the video
original path
$path = "sample.mp4";
Command to compress
exec("ffmpeg -i sample.mp4 -vcodec h264 -acodec aac -strict -2 compressed_video.mp4);
The command what i used for getting video size
$compressed_video_information = exec("ls -h1 compressed_video.mp4);
echo $compressed_video_information;I get just file path instaed of getting video file size, so someone help me how to overcome this issue ?