
Recherche avancée
Médias (33)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (82)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
Sur d’autres sites (11889)
-
reading videos in matlab not working (the following codec(s) to be installed on your system)
20 février 2016, par Ehab AlBadawyWhen I try to read a video in matlab
v = VideoReader('t.avi');
I get this error :The file requires the following codec(s) to be installed on your system:
video/x-msvideoand some time it needs
mpeg
codec when I try to load mpeg or mp4 video.I found someone referring to rename libstdc++.so.6.0 to libstdc++.so.6.0.10 but I found that I already have libstdc++.so.6.0.13
I’m using matlab 2013 with archlinux.
Update : I get this warring in the terminal when trying to read a video
Failed to load plugin '/usr/lib/gstreamer-0.10/libgstpango.so':
/usr/lib/libharfbuzz.so.0: undefined symbol: FT_Face_GetCharVariantIndex -
syntax error in shell_exec php
1er avril 2018, par Gerag2I’m stumped seems everything is right don’t know why it gives an error
<?php
echo "Starting ffmpeg...\n\n";
echo shell_exec("ffmpeg -i /var/www/vhosts/site.com/httpdocs/Videos/*.* -i "$i" -c:v libx264 -crf 24 /var/www/vhosts/site.com/httpdocs/Videos/Output/"${i%.*}.mp4 null >/dev/null 2>/var/log/ffmpeg.log &");
echo "Done.\n";
?>and yes this codes runs in terminal
for i in *.*; do ffmpeg -i "$i" -c:v libx264 -crf 24 n/"${i%.*}.mp4"; done
-
How to create a .command file with unity with execute previlages ?
30 janvier 2017, par EhabSherifHello everyone how do you do,
In my app I’m trying to use ffmpeg through a batch file, windows works great writing .bat files, however when I write .command files on MAC the files don’t open and tells me that I don’t have permission.
Also when I run the command
chmoc u+x [.command File Path]
through the terminal the file works..Knowing that when I create a new text file with the command and rename it to .command it works fine.
I write the command file in unity using File.WriteAll, is there any other way for writing the file that gives the previlage needed ? knowing that I run the batch file using a process in unity.
Thank You,