
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (102)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (8529)
-
PHP ffmpeg - save mp4 as H.264 in Baseline profile
2 mai 2020, par PikabooI'm trying to play a mp4 file in android but it's not working.



According to Android VideoView Cannot play video mp4



the file needs to be
H.264 in Baseline
.


I don't know what the hell this means.



This is the PHP code I'm using to create mp4 :



$videoname = str_replace('.gif', '.mp4', $picname);
$ffmpeg = FFMpeg\FFMpeg::create(array(
 'ffmpeg.binaries' => 'ffmpeg/bin/ffmpeg.exe',
 'ffprobe.binaries' => 'ffmpeg/bin/ffprobe.exe',
 'timeout' => 6600, // The timeout for the underlying process
 'ffmpeg.threads' => 12, // The number of threads that FFMpeg should use
), $logger);

$video = $ffmpeg->open('memes/' . $folder . '/' . $picname);
$video
 ->save(new \FFMpeg\Format\Video\X264(), 'memes/' . $folder . '/' . $videoname);




How can I set it to be
H.264 in Baseline
profile ?

-
ffmpeg save difference between 2 videos to file
10 août 2020, par 0x-1I'm currently trying to learn everything related to videos and encountered a problem that I need help with.


The Question is : How can I save the difference between 2 videos to a seperate file with ffmpeg ?

For example here is the ffplay command I'm trying with :
(Source : https://superuser.com/questions/854543/how-to-compare-the-difference-between-2-videos-color-in-ffmpeg)

ffplay -f lavfi "movie=left.mp4,setpts=PTS-STARTPTS,split=3[a0][a1][a2];
 movie=right.mp4,setpts=PTS-STARTPTS,split[b0][b1];
 [a0][b0]blend=c0_mode=difference[y];
 [a1]lutyuv=y=val:u=128:v=128[uv];
 [y][uv]mergeplanes=0x001112:yuv420p,pad=2*iw:ih:0:0[down];
 [a2][b1]hstack[up];[up][down]vstack"



In this case I would want to have the bottom left video saved to a new file.

Can someone help me get together the right ffmpeg filter and explain the proccessing of ffmpeg ?

-
mpeg12dec : Extract CC user data into frame side data
26 novembre 2013, par John Stebbins