
Recherche avancée
Autres articles (112)
-
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 (...) -
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 ;
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (12156)
-
PHP exec not executing FFmpeg command
28 juillet 2016, par Ali faizanI have used php’s exec to execute FFmpeg command but its not woking when I open it in browser. But when i run this php file script in terminal it works fine.And my php safe mode is off. please help me to get it solved. my php code is
<?php
$output=exec("ffmpeg -f image2 -i /home/phedra/imgs/image/img%03d.png -r 12 -s 610x489 /home/phedra/imgs/video/out.avi", $out);
echo $out;
echo $output;
?> -
How can I extract multiple video files from one wmv file using ffmpeg ? [closed]
31 octobre 2023, par AdrianaI have a single wmv file that has 4 video tracks on it. I'm not sure why but the program I was using to record these videos saved them all onto one file. How can I extract and save all 4 videos into seperate files using ffmpeg ?


So far I have tried running the following in terminal, but I get an error saying "event not found : Filename !


ffmpeg -i “!FileName!” -map 0:v -c copy “!NewFileName!.mp4” 



Also the way I have it written would only extract the first video I think. How do I extract all 4 ?


-
How to convert .flv video into .h264 format by using ffmpeg in linux ?
17 octobre 2012, par Shishir MudliyarAim : video conversion from .flv to .h264 format.
Problem : I have done conversion from flv to h264 format but my converted video (.h264) is running so fast(just like we click on fast forward button). Following Linux terminal command i used for creating .h264 video from flv by using ffmpeg.
ffmpeg -i example.flv -sameq -vcodec libx264 -vpre default -ar 22050 output.h264
I have gone through google but not see any appropriate help .