
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (38)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (8711)
-
FFmpeg won't convert file when ran from Siri Shortcuts
1er septembre 2022, par Piipperi800I can't seem to initialize FFmpeg from Siri Shortcuts, it just gets stuck in size= OKB time=00:00:00.00 bitrate=N/A speed= Ox despite FFmpeg using CPU cycles and creating a 3.9 MB file.


I've ran pretty much the exact same command directly from Terminal, and as seen in the screenshot, it runs fine. The only difference is that the Siri Shortcuts one uses variables. Which is an interesting one because when I tried running the command in a blank shortcut without those variables, it runs fine... What the heck could be going wrong ?




-
No response from FFMPEG from inside php (works in command line)
28 mai 2020, par Donal.Lynch.MscSo I have this executable working fine in a Windows 10 dev environment :



$cmd = 'C:/ffmpeg/bin/ffmpeg.exe -i video.mp4 -i audio.mp3 -c:v copy -c:a aac output.mp4';
exec($cmd, $output)




However when I move it into the Ubuntu staging environment and change the path to :



/usr/bin/ffmpeg




there is no response from it.
The following works in the ubuntu terminal



ffmpeg -v, ffmpeg -i, php -v, ... 




but there is no response from it from inside php.
Am I missing something here ?



I've also tried adding sudo to the above command which seems to make no difference.
(Yes I know I should be developing in the same environment as the staging/prod servers but it's not an option in this specific case).


-
FFMPEG split video is not working properly
12 juillet 2018, par user6250770I am trying to split video then into frames. I am passing starting time and ending time dynamically.
for ex :
ffmpeg -i /Users/mypc/Documents/Avatar/input.mp4 -ss 00:00:39.799 -t 00:00:42.039 /Users/mypc/Downloads/testing/output.mp4
It should cut the video from 39th second to 42 second. Approximately 3 seconds. But, it’s splitting more than 3 seconds. I am stuck why it’s behaving like that.
Am i missing something in my command or anything ?
Please suggest
Screen shot of my terminal attached :