
Recherche avancée
Médias (33)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (60)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (7274)
-
mpeg12dec : Extract CC user data into frame side data
26 novembre 2013, par John Stebbins -
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 ?

-
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 ?