
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (86)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (11527)
-
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.


-
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.


-
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.