
Recherche avancée
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (15127)
-
Joining h264 MP4 with ffmpeg Concat without re-encoding
4 décembre 2013, par Lisa JacobsI am trying to write a batch file to stitch 3 MP4 videos together without having to re-encode them, using a text file
mylist.txt
:file 'video1.mp4'
file 'video2.mp4'
file 'video3.mp4'I am stitching with :
ffmpeg -f concat -i input.txt -c copy output.mp4
but for some reason the second video remains with a blackscreen and/or like if the stream was corrupted. It's like there was no keyframe at the beginning ofvideo2.mp4
?Video2.mp4
plays fine and does not seem to be corrupted. -
ffmpeg concat particular videos from text file
29 juin 2022, par tejas netradynei wanted to concat only 1st and 4th video from my txt file 'list_of_videos' where my txt file looks like this :




file 'video1.mp4'

file 'video2.mp4'

file 'video3.mp4'

file 'video4.mp4'



currently i am able to stitch all videos from 1 to 4 using :


ffmpeg_command= 'ffmpeg -f concat -safe 0 -i %s -c copy %s' % \
 (
 list_of_videos,
 video_path
 )



-
how to scale server setup with ffmpeg for converting videos on website
26 mai 2020, par TomI have a website that will offer video conversion service with ffmpeg. Users will select some options and click a button to process and create a video. The site is currently using laravel/php. If there are many requests at the same time, how should I handle the scaling up ? How can it be done with traditional ISP ? How about cloud service, e.g. Amazon, Digital Ocean ?