
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (81)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (8510)
-
Ffmpeg issue : At the time of convert from .webm to .mp4 it getting 0 MB size
27 janvier 2019, par amit kumarAt any time I get video file whereas video as .webm. So, files have different different size.
Now the issue is : I have a pair of video files whose video size is 7 mb when they execute to create mp4, then it success whose mp4 size become 5.18 MB.
At the same time again I have a files whose size is 4.65 MB of video as .webm then, when they execute then Mp4 files are create but size becomes 0 MB.
So I need help why this becomes 0 MB.
Note : whereas I am using this command :
(-i 407118_agentPL27_2018-09-26T16-18-17.webm 407118_agentPL27_2018-
09- 26T16-18-17_in.mp4)I have many of files whose size lies between 1 MB to 1 GB, they also not create MP4. But, in between if give 7 MB to 9 MB file it creates with Proper size.
I need the command as above which I send, from that command if I pass into ffmpeg between 1 MB to 1GB .webm file then the MP4 file should must be created.
Note : I don’t have console output because I am implementing this command with C#.
-
Anomalie #4744 : Traitement en trop sur nom de l’auteur dans auteur_edit
25 avril 2021, par ARNO- -C’est ortho-typo qui l’ajoute. Moi je me contente de saisir mon nom.
=> Note que par ailleurs, ça ne le fait pas sur les titres des articles, par exemple. Uniquement sur les noms d’auteurs.
-
Getting time codes in video files easier
14 décembre 2024, par AreteI am going through some videos to trim them (extracting parts of the video).


I know there is billions of software out there that can trim videos easily, but I haven't found any that does not recode the result.


My method right now is to open the video in MPC-BE -> play -> pause -> note down the time -> resume to find a place end the clip -> pause -> note down the end time for the clip. Then I take the time codes and use ffmpeg to extract the part. Usually with something like :


ffmpeg -i input.mp4 -ss 01:50:00 -to 01:55:00 -c:v copy -c:a copy output.mp4



My question is is there an easier way to get the time codes ? The best thing would be to use ffplay to playback and just hit a key-combo to copy the time code. But I am also open any other approach that will make it easier to get the timecodes. As you probably understand, writing down the time codes manually for 23 clips is a real pain.


Update : As of lately I have switched to TMPGEnc MPEG Smart Renderer 6 I found it easier to use than MPV. If any better alternative exist please let us know.