
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (54)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (3811)
-
Why can't find ffmpeg || ffprobe error in Docker build even locally it's working fine
13 juillet 2023, par Haider AliI got this error : https://i.stack.imgur.com/glGAQ.png
from this code https://i.stack.imgur.com/q8dHd.png


I need to compress the video size to reduce the uploading time to server and using ffmpeg but this error in docker build even locally it's working fine. Now i need to remove this error . On the other hand everything woring fine, modules also installed.


-
Video compression in react native using ffmpeg
22 juillet 2021, par Shahanshah AlamI trying to compress video in react native using react-native-ffmpeg .


I am picking video using react-native-image-picker.


I tried using command
-y -i ${inputVideo} -vcodec h264 -acodec mp3 ${finalVideo}
.

But it is failing with
rc:1
.
My code :-

RNFFmpeg.execute(
 str_cmd,
 ).then(result => {
 if (result.rc === 0) {
 console.log("successfully compressed");
 } else {
 console.log("error",result);
 }
 });



Thanks !


-
FFMPEG command in PHP shell_exec is too slow for a 300Mo mp4
8 octobre 2020, par nopapiI have a web site where user upload videos.


When a video is uploaded I shell_exec 3 ffmpeg commands :


- 

-
Generate preview :


$cmd = "ffmpeg -ss 1 -i ".$filePath." -vf \"scale='if(gt(dar,360/202),202*dar,360)':'if(gt(dar,360/202),202,360/dar)',setsar=1,crop=360:202\" -frames:v 1 ".$thumbnail;



-
Compress the video :


$cmd = "ffmpeg -i ".$filePath." -c:v libx264 -crf 23 -preset veryfast -c:a aac -ab 128k -movflags faststart ".$wmoutput;



-
Add watermark :


$cmd = 'ffmpeg -i '.$wmoutput.' -i new/watermark.png -filter_complex "overlay=10:10" '.$finaloutput;











The problem is that these 3 commands take a lot of time to finish and sometimes it goes over Maximum execution time specialy for video files that are bigger than 300Mo. I can just expand the Maximum execution time but I don't know how many seconds I have to set.


Is there a way to make the scripts above execute faster without having to change the Maximum execution time ?


-