
Recherche avancée
Médias (5)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (56)
-
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 (8395)
-
keyframes for mp4s with ffmpeg and ffprobe
24 juin 2013, par steaksI'm trying to create a mp4 video with keyframes (aka i-frames) so I can do pseudostreaming with flash as suggested by JW Player. I'm using ffmpeg and ffprobe. When I run
./ffprobe.exe -show_frames -i myVideo.mp4
I see a lot of output where the only key frames that exist arekey_frame=0
andkey_frame=1
. How can I make my mp4 video have more keyframes ? I'd be happy to use ffmpeg, Any Video Converter, Avidemux, or any other program that runs with Windows 7. -
Subtract a specific string from a variable in a for loop
14 octobre 2020, par FilipI am making a file converter with batch using FFMPEG.


I have encountered a problem when trying to subtract the name of a file from the complete link to the file to get the directory of the folder it is in so after the file is converted it can be put into that directory.


Can someone advise me on how I could subtract the string from the
filename
variable from the string in thedirectory


My code :


@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
set filetype=.flac
for /R %%a in ("*%filetype%*") do (
 set directory=%%a
 set filename=%%~na%filetype%
 set convdir=!directory:%filename%=!
 echo !convdir!
 pause
 ffmpeg -i "%%a" "convdir%%~na.wav"
 echo Converted %%a
)
echo Convertion Done!
pause



-
running a .bat file using python
26 octobre 2020, par Marius BleesI am working on a Youtube to mp4 converter and I currently have two webm files(one containing the audio and one containing the video) and a .bat programm that converts them into a webm file with audio and video. I tryed to open the .bat file using this code :


import subprocess

subprocess.Popen(['C:/Users/mariu/Desktop/Youtube/a3.bat'])



But when I run the code I get this Error :


C:\Users\$$$\source\repos\Youtube Downloader\Youtube Downloader>ffmpeg -i 
C:/Users/$$$/Desktop/Youtube/1.webm -i C:/Users/$$$/Desktop/Youtube/2.webm -c copy 
C:/Users/$$$/Desktop/Youtube/output.webm
The command "ffmpeg" is either wrong or could not be found. (translated from german)



The .bat programm works when I simply execute it but it doesnt when using Python. I have also tryed to use os.system("path") but that also didn't work. Help would be appreciated.