
Recherche avancée
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)
-
FFmpeg Question : Proper Format to use when no transition is being used ?
23 juin 2021, par HHH-MessengerI can NOT fine any examples so can someone point me in the right direction please.
I have many images with to short duration time to add transitions, and would like to know what the proper syntax and format is, for a text file ?
Would only the images with transitions be indexed, or all of them ?


Also if my files are located in the directory C :\temp\ what does the text file look like below ?


$ ffmpeg \

-loop 1 -t 1.4 -i 001.jpg \ (no fade in or out)

-loop 1 -t 1.65 -i 002.jpg \ (no fade in or out)

-loop 1 -t 1.9 -i 003.jpg \ (no fade in or out)

-loop 1 -t 2.6 -i 004.jpg \ (with fade out .500)

-loop 1 -t 2.35 -i 005.jpg \ (with fade in .500)

-loop 1 -t 1.4 -i 006.jpg \ (no fade in or out)

-filter_complex \

"[0:v]fade=t=out:st=0:d=0[v0] ; \

[1:v]fade=t=in:st=0:d=0,fade=t=out:st=0:d=0[v1] ; \

[2:v]fade=t=in:st=0:d=0,fade=t=out:st=0:d=0[v2] ; \

[3:v]fade=t=in:st=0:d=0,fade=t=out:st=2.5:d=.5[v3] ; \

[4:v]fade=t=in:st=1.85:d=.5,fade=t=out:st=0:d=0[v4] ; \

[5:v]fade=t=in:st=0:d=0,fade=t=out:st=0:d=0[v5] ; \

[v0][v1][v2][v3][v4][v5]concat=n=6:v=1:a=0,format=yuv420p[v]" -map "[v]" -map 6:a -shortest output7.mp4

Here is a common example : ALL IMAGES HAVE EFFECTS ADDED, PLEASE GIVE AN EXAMPLE WITH SOME HAVING EFFECTS AND SOME NOT HAVING EFFECTS ADDED.


ffmpeg \

-t 5 -i 1.jpg

-t 5 -i 2.jpg

-t 5 -i 3.jpg

-filter_complex

"[0:v]zoompan=z='if(lte(zoom,1.0),1.5,max(1.001,zoom-.0015))':d=125,fade=t=out:st=4:d=1[v0] ;

[1:v]zoompan=z='if(lte(zoom,1.0),1.5,max(1.001,zoom-.0015))':d=125,fade=t=in:st=0:d=1,fade=t=out:st=4:d=1[v1] ;

[2:v]zoompan=z='if(lte(zoom,1.0),1.5,max(1.001,zoom-.0015))':d=125,fade=t=in:st=0:d=1,fade=t=out:st=4:d=1[v2] ;

[v0][v1][v2][concat=n=4:v=1:a=0,format=yuv420p[v]" -map "[v]" -s "800x450" -t 40 ./out_fade.mp4

-
Simple Question About Subprocess popen + screen +ffmpeg + youtube-dl
2 juin 2021, par El_Barto_404ffmpeg -i "$(youtube-dl -x -g "https://youtu.be/xhXq9BNndhw")" -f s16le -ac 2 -ar 48000 -acodec pcm_s16le input.raw



can anyone put this inside a popen process after a screen -S Convert ?


I tried already with ' ', with commas.. but nothing


I built a bot on telegram which if you send :


.mandala youtubelink



it takes the link and converts the video from YouTube into a uncompressed file, I need it for a music bot which streams those uncompressed files.


if I run in console :


ffmpeg -i "$(youtube-dl -x -g "https://youtu.be/xhXq9BNndhw")" -f s16le -ac 2 -ar 48000 -acodec pcm_s16le input.raw 



it works but when I try with screen and popen it doesn't.. why ?


@helper.register(pattern=r'.mandala (.+)')
async def mu2342sicbfffffffot(e):
 cheater = e.pattern_match.group(1)
 cheat = cheater
 myorder2224 = ''' "$(youtube-dl -x -g "{}")" '''
 doit = (myorder2224.format(cheater))

 ### I already try to format the variable 
 ### and put doit after -i and 
 ### everything was in '' and commas 
 ### like 'ffmpeg', 'i*, doit, '-f'...
 ### and so on but nothing.. but nope doesn't work.

 p = subprocess.call(['screen','-S','onveter',' ffmpeg -i "$(youtube-dl -x -g "https://www.youtube.com/watch?v=Sw5HQbYGoCA")" -f s16le -ac 1 -acodec pcm_s16le -ar 96k input.pcm'],shell=True)
 await helper.control_panel.send_message(config.chat, "La sto a manna")
 time.sleep(14)
 



I REPEAT ONE MORE TIME :
HOW CAN I USE THAT FFMPEG COMMAND INSIDE A POPEN SUBPROCESS AFTER A Screen -S Convert ?


IF SOMEONE WANT TO KNOW WHY :
Because I want to convert youTube videos to file .raw / .pcm


-
Laravel 7 Lumen, installing ffmpeg question
30 mars 2021, par Gabriel Quezada CastroI'm trying to install FFMPEG from this git repository but my first question is :


- 

- I don't have config/app.php on this project but git documentation refers to this .
Config/app.php




I have these files inside app/config
This is what I have inside the project . My path MyProject/config/those files


Finally, I get this error when I type the last code in the repository documentation :
php artisan vendor:publish —provider="ProtoneMedia\LaravelFFMpeg\Support\ServiceProvider"


I get this error . What does It mean ? .




By the way, this is Git repository I'm trying to install . https://github.com/protonemedia/laravel-ffmpeg?fbclid=IwAR2bM2RXIcF4JtWg45_33vnIcMFp8YXdGqcndxmpHyQLnNAcWKUTtoefcik


So, How Can I configure the project ? . Thanks for help me.