
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (18)
-
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 (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (6388)
-
Modify the ffmpeg command to work with more than one image
16 avril 2024, par Koi Farm ĐaMiffmpeg -y -i image.jpg -filter_complex "[0:v] scale=1280 :-1,loop=-1:size=2,trim=0:40,setpts=PTS-STARTPTS,setsar=1,crop='w=1280:h=720:x=0:y=min(max(0, t - 3), (40 - 3 - 3)) / (40 - 3 - 3) * (ih-oh)'" unix.mp4


I want to edit the above command so it can be used for multiple images or a folder containing many images. And give all images used the same size and aspect ratio. Please help me, thank you everyone.


-
ffmpeg - Why does concatenating .ts videos through .txt fail from \folder\ but work from \folder\subfolder~?
2 novembre 2020, par WinterI have a bunch of .ts videofiles that I want to merge into a single file so I can convert it to a .mp4 video.


The .ts files are in a folder "E :\videotest" like :


E:\videotest\0.ts 
E:\videotest\1.ts 
[...] 
E:\videotest\100.ts



I used a PowerShell command to output the filepaths in a .txt file :


foreach ($i in Get-ChildItem .\*.ts) {echo "file '$i'" >> mylist.txt}



The resulting mylist.txt looks like :


file 'E:\videotest\0.ts' 
file 'E:\videotest\1.ts' 
[...] 
file 'E:\videotest\100.ts' 



When I run the command :


ffmpeg -f concat -safe "0" -protocol_whitelist "file,http,https,tcp,tls" -i "E:\videotest\concat\mylist.txt" -c copy "E:\videotest\concat\combined_video.ts"



I get the error :




Line 1 : unknown keyword ' ■f'

E :\videotest\concat\mylist.txt :
Invalid data found when processing input



But if I add a subfolder layer to the files like this :


E:\videotest\0\0.ts 
E:\videotest\1\1.ts 
[...] 
E:\videotest\100\100.ts 



And change mylist.txt to :


file 'E:\videotest\0\0.ts' 
file 'E:\videotest\1\1.ts' 
[...] 
file 'E:\videotest\100\100.ts' 



The same ffmpeg command will work and create the combined_video.ts file.


Why does converting work with the subfolder structure but not from the main folder ?


How do I adjust the ffmpeg command to make it work ?


Thank you.


-
Video generated with Jcodec does not work in IOS device
6 avril 2023, par Fagun ThakkarI have developed application which generates video with the help of Jcodec. But generated videos does not play in ios.Anyone know reason behind it ?
Also anyone know any good alter native for genrating video which works fine in al systems.


I have tried jcodec and ffmpeg.
fmpeg takes lot of time while generating videos.
So i need solution in either jcodec or good new library.