
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (61)
-
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 (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (5243)
-
ffmpeg convert images with name pattern into video [duplicate]
27 mars 2017, par passionThis question already has an answer here :
-
Input parameters to FFMPEG
2 answers
I am converting png images into a video using ffmpeg.
My png file names are like this :
image1_xy.png
image2_xy.png
image3_xy.png
image4_xy.png
...
image10_xy.png
image11_xy.png
...
image100_xy.png
image101_xy.png
...my script is the following :
ffmpeg -r 1 -f image2 -s 1920x1080 -i image%03d.png -vcodec libx264 -crf 25 -pix_fmt yuv420p test.mp4
which is working only when the file names are like
image001.png
,image002.png
...How should i modify this to take into account the file name pattern I have ?
update
i don’t mind if the answer suggests to use a bash script to rename files in the order they appear with the right pattern.
-
Input parameters to FFMPEG
-
avcodec/flashsvenc : Fix packet size calculation
19 novembre 2022, par Andreas Rheinhardtavcodec/flashsvenc : Fix packet size calculation
The earlier code did not account for the frame header as well
as the block headers ; furthermore, in case a large part of
a block is unused (due to padding), the output size may
exceed 3 * width * height (where the dimensions correspond
to the visible pixels) due to the overhead of the zlib header,
so use the padded dimensions to calculate the maximum packet size
(which is also what the actual call to compress2() uses).
Fixes ticket #10053.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
FFMPEG - Converting MKV to MP4 on Gdrive using rclone mount. ERROR : output file #0 does not contain any stream
30 avril 2020, par Enrique TorrezI am trying to convert video files from my back-up rip files library that I have on my Gdrive account. I was successfully able to set up a dedicated server + plexserver + rclone + gdrive. I have files that are big and my family are not able to stream them due to the poor internet service that I have in my country. So I am trying to reduce the file size so it can be streamed directly



My rclone mount script is :



rclone mount gcache: /path --tpslimit 5 --allow-other --acd-templink-threshold 0 --stats 1s --buffer-size 64M --timeout 5s --contimeout 5s --max-read-ahead 1G --drive-chunk-size 64M -vv &




And my ffmpeg script is :



ffmpeg -i origen.mkv -c:v copy -movflags faststart -strict -2 convertedfile.mp4




I had the following errors :



moov atom not found




I used this command :



AtomicParsley myVideo.mp4 -P




Now when I execute



ffmpeg -i convertfile.mp4




I get this error :



Output file #0 does not contain any stream




What am I doing wrong ? I need some help please.