
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 (112)
-
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 ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (17620)
-
Could not find class file in terminal
7 avril 2016, par nav123I am trying to run this command in terminal window of android studio
D :\android_workspace\VideoMaker>"C :\Program Files\Java\jdk1.8.0_65\bin"\javah -d jni -classpath C :\Users\ST_003\AppData\Local\Android\sdk\platforms\android-19\android.jar ;....\buil
d\intermediates\classes\debug com.videomaker.videomaker.app.MainActivitybut getting error
Error : Could not find class file for ’com.videomaker.videomaker.app.MainActivity’.
Please Help.
-
Running an Terminal command inside a Directory
22 janvier 2014, par user3220153I want to run and tell ffmpeg, a video converter, to combine an audio and video file to one video file. I want to do this in terminal so I can do this repeatedly and quickly.
This works in Terminal :
[directoryX]/ ffmpeg -i [directoryX]/sound.wav -i [directoryX]/movie.avi video_finale.mpg
PauseBut I do NOT want to keep specifying the directory in Terminal because there are many folders in which I need to do this. I would like to create a .command file, copy it and the ffmpeg application (very small), and past it in every folder that needs a video conversion. I would then run the .command file and it would execute the command mentioned above in the local folder. What is the best way to approach this ???
This line in .command file does NOT work (inside the folder with ffmpeg, audio and video) :
ffmpeg -i sound.wav -i movie.avi video_finale.mpg
PauseI get :
wireless-10-146-122-30:~ yagostucky$ /Volumes/TURBOLINEA/inFrontOfMe/footage/jan-19-2014/dollGhost_duke_act1_scene3_take1/batch.command ; exit;
/Volumes/TURBOLINEA/inFrontOfMe/footage/jan-19-2014/dollGhost_duke_act1_scene3_take1/batch.command: line 1: ffmpeg: command not found
/Volumes/TURBOLINEA/inFrontOfMe/footage/jan-19-2014/dollGhost_duke_act1_scene3_take1/batch.command: line 2: pause: command not found
logout
[Process completed] -
Geting Video duration from terminal with FFMPEG in c++
8 août 2020, par MrOutadiI need to get video duration (just with command Line) with ffmpeg and use it in my code but it will just show it to me !


I want to use it to run some command Line too !


ffmpeg -i VideoName.mp4



and this is part of output :


Duration: 00:00:58.05, start: 0.000000, bitrate: 170 kb/s



How I can send info from Terminal to code ??