
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (77)
-
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)
Sur d’autres sites (14214)
-
When using MoviePy to resize a video how do I know what bitrate to use to maintain quality when writing the new video to disk
4 juillet 2016, par MichaelExpanding on this question How To Resize a Video Clip Python about using MoviePy to resize a video.
When it comes time to write the resized video to disk
How do I select a bitrate value so there is as little loss of quality as possible ?The original video is 4.8M on disk and is
.mp4
Bit rate set when writing to disk
clip_resized.write_videofile(ResizedClip,bitrate="5000k")
Gives a file of 8.3MB in size
No bit rate set
clip_resized.write_videofile(ResizedClip)
Gives a file of 3.3MB
-
FFMPEG Flutter - Generating video from images not playing on default android video players
17 février 2023, par Abdullah RiazI'm trying to generate a video from multiple image files in FFMPEG Flutter. I'm using https-gpl package.


ffmpeg_kit_flutter_https_gpl: 5.1.0



I'm using this command.


"-f concat -safe 0 -protocol_whitelist file,http,https,tcp,tls,crypto -i $filePath -stream_loop -1 -i $musicFile -vf 'scale=3840:2880:force_original_aspect_ratio=decrease,pad=3840:2880:(ow-iw)/2:(oh-ih)/2,setsar=1' -r 6 -c:v libx264 -crf 40 -profile:v main -preset veryfast -pix_fmt yuv420p -t $totalTime $outputFilePath"



Where you can clearly see, I'm encoding video in
libx264
withyuv420p
.

The thing is, the video is created successfully and played smoothly on the VLC. But it doesn't show anything on normal/default android video players although it plays the audio.


I've tried multiple things but all failed to run video on default android video players. I've even tried multiple android phones.
What am I doing wrong here ?


-
FFMPEG Flutter - Generating video from images not playing on default android video players
17 février 2023, par Abdullah RiazI'm trying to generate a video from multiple image files in FFMPEG Flutter. I'm using https-gpl package.


ffmpeg_kit_flutter_https_gpl: 5.1.0



I'm using this command.


"-f concat -safe 0 -protocol_whitelist file,http,https,tcp,tls,crypto -i $filePath -stream_loop -1 -i $musicFile -vf 'scale=3840:2880:force_original_aspect_ratio=decrease,pad=3840:2880:(ow-iw)/2:(oh-ih)/2,setsar=1' -r 6 -c:v libx264 -crf 40 -profile:v main -preset veryfast -pix_fmt yuv420p -t $totalTime $outputFilePath"



Where you can clearly see, I'm encoding video in
libx264
withyuv420p
.

The thing is, the video is created successfully and played smoothly on the VLC. But it doesn't show anything on normal/default android video players although it plays the audio.


I've tried multiple things but all failed to run video on default android video players. I've even tried multiple android phones.
What am I doing wrong here ?