
Recherche avancée
Autres articles (81)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (4101)
-
Getting 500 error when uploading video to twitter from android app
11 juillet 2016, par SakshiI am trying to compress video using FFMPEGAndroid library using the following command.
{"-y" ,"-i", file.getAbsolutePath(),
"-c:v", "libx264", "-crf", "20",
"-aspect", "1:1",
"-pix_fmt", "yuv420p",
"-c:a", "aac", "-strict","experimental",
"-b:a", "96k", "-ac", "2", "-ar", "44100",
"-preset", "ultrafast",
"/storage/emulated/0/output.mp4"}When I try to share the video on Twitter from my android app, I get 500 Internal Server Error. I am able to share same video on Facebook and on my app. I have been read a lot of forums and FFMPEG manuals but no luck.
-
how to change the fps of video during playback of video without restarting video
8 juin 2018, par Mahek DelawalaI want to change the fps of video at run time (during the playback of video) without restarting or pausing using ffmpeg. I searched about it in the internet but I am not able to get the command which can change the fps directly without restarting the video but i found ffmpeg command which can create a new file with modified fps as shown below.
ffmpeg -y -r 20 -i input_file -r 45 output_file
Is it possible to change fps of video during run time using ffmpeg command ? If yes please provide me the command if not how can i change using c code. Please help me in this issue as early as possible.
Thank you. -
I want my video to crop 720x480 2s then serial crop 5s 1280x720 and so on until the end of the video. The output is a single video. ffmpeg [closed]
5 décembre 2019, par SON PHAN VANMy input is a 1920x1080 video. I want my video to crop 720x480 2s then serial crop 5s 1280x720 and so on until the end of the video. The output is a single video. What should I do with the ffmpeg command.