
Recherche avancée
Autres articles (48)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (6076)
-
FLV Streaming on iPhone with ffmpeg
11 février 2014, par SylterGood Morning,
I am an iOS/Mac Developer.I am developing an application that grab flv link from a website : now I want to play this flv file in streaming.
I find in AppStore BUZZPlayer, an application that can play flv video streaming : http://itunes.apple.com/it/app/buzz-player/id389744738?mt=8
Searching on Google I find out that exists ffmpeg for iPhone, so, my question is how can I stream a FLV Video with ffmpeg on iPhone ?
A sample code is very appreciated !
Thank You.
P.S. Sorry for my poor English...
-
Only trim video without encoding laravel ffmpeg
1er mai 2021, par gyd128I would like to ask if the possibility of using ffmpeg laravel in such a way that when cutting a movie it does not convert it to mp4 a second time ? I'm sending the code as it looks at the moment. There is an option on github to use CopyFormat,
use ProtoneMedia \ LaravelFFMpeg \ FFMpeg \ CopyFormat;
unfortunately it doesn't work on my example. Maybe someone will be that good and guide me to the answer. Sorry for my English

$ffmpeg = \FFMpeg\FFMpeg::create();
 $video = $ffmpeg->open('../../filmy/'.$path);
 $video->filters()->clip(\FFMpeg\Coordinate\TimeCode::fromSeconds($start), \FFMpeg\Coordinate\TimeCode::fromSeconds($end));
 $video->save(new \FFMpeg\Format\Video\X264('libmp3lame'), '../../filmy/conversion/s.mp4');



-
formula to calculate video dimensions for target aspect ratio
23 avril 2015, par Nevoxxi currently building an application that converts videos to a specific dimension under consideration of the target aspect ration.
the target resolution must always be 1280x720, i want to fit the uploaded video in this size using black bars.
can anyone point out a formula to calculate the target video dimensions without changing it’s aspect ratio ? if the target with is smaller then 1280x720 i’ll add the missing pixels as black bars.
i’m using ffmpeg with the
"-vf scale=1280x720,pad=?:?:black"
command(sorry if my english is not that great)