
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 (86)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 ) (...)
Sur d’autres sites (10363)
-
Reading out a parameter from ffmpeg by using bash
20 mars 2014, par sebastianI am having trouble with reading out a specific parameter from FFmpeg with bash. The parameter which I want to have, looks like this :
"FC_SOURCEFILE_MI_Audio_#1_Channel(s)"="1 channel"
"FC_SOURCEFILE_FC_location"="/content/flowcenter/highres/dokfest/dokfestftp8/Hands_Up_to_Heaven_prores1920x1080.mov"and the second one is just there to confirm that it works properly
echo test: $FC_SOURCEFILE_MI_Audio_#1_Channel(s)
echo location: $FC_SOURCEFILE_FC_locationthe outcome looks like this :
/home/mfc/ffmpeg/audio_pan.wav.sh: line 1: syntax error near unexpected token `('
/home/mfc/ffmpeg/audio_pan.wav.sh: line 1: `echo test: $FC_SOURCEFILE_MI_Audio_#1_Channel(s)'and by using the second command I get this outcome :
test: /content/flowcenter/highres/dokfest/dokfestftp8/Hands_Up_to_Heaven_prores1920x1080.mov
So my first guess was that my script does not like special characters and I looked up ASCII for
#
,(
,)
telling me 35 for #, 28 for (, 29 for ) but I am not sure how to write this in my bash-file. The only thing that came to my mind was typing in"35"
,"28"
and"29"
but that did not work. What am I missing ? -
avcodec/ass,webvttdec : fix handling of backslashes
19 février 2024, par Onericavcodec/ass,webvttdec : fix handling of backslashes
Backslashes cannot be escaped by a backslash in any ASS renderer,
but unless followed by specific characters it is just printed out.
Insert a word-joiner character after a backslash to break up
active sequences without changing the visual output. -
Having problems running my unix ffmpeg script on windows
3 octobre 2020, par zero credibilityim trying to run this script for converting between the two formats of VR on a windows machine


ffmpeg -i input.mp4 \
-filter_complex "[0:v]crop=in_w/2:in_h:0:0 [top];
[0:v]crop=in_w/2:in_h:in_w/2:0[bottom];
[top][bottom]vstack,
scale=iw*min(2000/iw\,2000/ih):ih*min(2000/iw\,2000/ih),
pad=2000:2000:(ow-iw)/2:(oh-ih)/2[outv]"
-map "[outv]" -map 0:a -c:a copy output_3dv.mp4



from what ive found i think the \ characters need to be swapped with ^ like this


ffmpeg ^
-i input.mp4 ^
-filter_complex "[0:v]crop=in_w/2:in_h:0:0 [top]; [0:v]crop=in_w/2:in_h:in_w/2:0[bottom]; [top][bottom]vstack, scale=iw*min(2000/iw,2000/ih):ih*min(2000/iw,2000/ih), pad=2000:2000:(ow-iw)/2:(oh-ih)/2[outv]" ^
-map "[outv]" -map 0:a -c:a copy output_3dv.mp4




but its still falling over . would anyone have any pointers one where im going wrong please ?
thanks in advance