
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (72)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (10327)
-
Does simple rescaling from 1080p to frame height of 720 lead to 720p ?
12 août 2015, par nburkI want to convert a 1080p to 720p and also lower resolutions eventually.
I have been using
ffmpeg
for all my video processing activities so far, and would simply approach this task using the following command :ffmpeg -i tos.mov -vf scale=-1:720 tos_0x720.mov
I understand that this will rescale my video to a new frame size having 720 pixels set as a fixed height and the width dynamically calculated.
What I am not sure about are the implications regarding the quality factors of the video when using
ffmpeg
this way.- Is it valid to assume that running this command will output a perfect HD 720p quality video ?
- What would be a benefit of using dedicated video conversion software to accomplish my goal compared to running the above command ?
-
ffprobe failed to execute command
31 août 2020, par Ted BedI'm trying to get a frame from a video in a temp location but I get an error like this :


Uncaught Alchemy\BinaryDriver\Exception\ExecutionFailureException: ffprobe failed to execute command '/usr/bin/ffprobe' '/tmp/phpfwEh9u' 



Which is weird because I have another script that does the exact same thing but there is no error. Are there any reasons for why this could be happening ? Could there be any factors causing this in my script :


$sec = 1;
$movie = $filentmpname;
$thumbnail = 'thumbnail_uploads/' . $imfileid;

$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open($movie);
$frame = $video->frame(FFMpeg\Coordinate\TimeCode::fromSeconds($sec));
$frame->save($thumbnail);



-
dotnet core media trans-coding library
18 juin 2020, par Faisal ShahinI'm searching for a library for media transcoding other than
ffmpeg
for dotnet core the thing I'm searching for is for media streaming of videos.


The
ffmpeg
is great but there is no library that will enable me to save the transcoded vedio to a stream object, plus when tested the conversion of the video usingffmpeg
it took too much time (of course depending on multiple factors).


so Im wondering if there is a dotnet core library other than those who uses
ffmpeg
that do the same thing but with more performance and the ability to save the output to a stream object