
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (88)
-
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 ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (11912)
-
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 ??