
Recherche avancée
Médias (29)
-
#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
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
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 ;
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9132)
-
doc/ffmpeg : update example command line for IAMF muxing
4 février, par James Almer -
sh : -c : line 0 : syntax error near unexpected token `('
26 février 2017, par asadHi iam using following c++ code to create ffmpeg command. When i run this command in bash using linux popen, following error occurs. If i put the command directly in bash, it works fine and doesn’t give any other. Please help me figure out the cause of it.
C++ code to generate command :
const string VideoCreator::GetFFMPEG_Silent_Audio_Merge_command()
{
stringstream command;
command << FFMPEG_BINARY << " -nostdin -loglevel error -y -threads 0 -f concat -safe 0 -i <(echo file /home/ec2-user/videoData/DnXptC4ld8/FADING_OUT_VOLUP_Blrt_Decrypt_1ed5c4d569d8a1f23428b65217f65eaf_audio.m4a; echo file /home/ec2-user/videocreation/temp/silence.m4a) -c copy " << _outputAudioWithSilence;// << " 2> " << _ffmpeg_log_file;
std::cout << "\n Command = " << command.str() << "\n";
return command.str();
}Bash error :
sh: -c: line 0: syntax error near unexpected token `('
sh: -c: line 0: `/opt/ffmpeg/ffmpeg -nostdin -loglevel error -y -threads 0 -f concat -safe 0 -i <(echo file /home/ec2-user/videoData/DnXptC4ld8/FADING_OUT_VOLUP_Blrt_Decrypt_1ed5c4d569d8a1f23428b65217f65eaf_audio.m4a; echo file /home/ec2-user/videocreation/temp/silence.m4a) -c copy /home/ec2-user/videoData/DnXptC4ld8/WITH_SILENCE_FADING_OUT_VOLUP_Blrt_Decrypt_1ed5c4d569d8a1f23428b65217f65eaf_audio.m4a' -
How do I crop a rectangle from a video, from the command-line ?
21 avril 2017, par android.weaselI’m capturing a video of a test-run on an iOS simulator, and I have an automated script to tell QuickTime to record only a rectangle of video.
This works well on the desktop displaying to the physically connected screen, but for remote desktop users, the resulting video is a garbled version of bits of the primary screen instead of the rectangle of the secondary user’s view.
It’s even worse for a Mac Pro running VMs : ALL users get a blank, black rectangle. This obtained for Yosemite and still obtains for ElCap.
Oddly, capturing a full screen works properly for all sessions, so I could record the whole thing, and then crop out the window I want - it doesn’t move.
Is there a good command-line tool that can crop a rectangle from a (full screen) video stream ? I looked at ffmpeg, but couldn’t see it listed.
Thanks