
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (103)
-
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (5776)
-
FFmpeg : The filename, directory name or volume label syntax is incorrect
15 mai 2015, par m_pro_mI am making an app which auto-converts videos recorded from another program. I am trying to use command line to exec ffmpeg conversion. This is the command I am typing to the console :
cmd /c "C:\Users\Mark\IdeaProjects\Converter\ffmpeg\ffmpeg.exe" -i "C:\Users\Mark\Videos\Arma 3\Arma 3 05.10.2015 - 16.27.24.06.DVR.mp4" -b:v 15M -y "C:\Users\Mark\Videos\Converted\Arma 3 05.10.2015 - 16.27.24.06.DVR.mp4.avi"
It returns error message
The filename, directory name or volume label syntax is incorrect
If I run that command without cmd /c part, it works like it should. I also tried adding /s but without success.
EDIT
I solved the problem using Apache Commons library (Java) for executing commands in Command Line.
-
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.


-
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