
Recherche avancée
Autres articles (80)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
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 (...)
Sur d’autres sites (6007)
-
FFMpeg : CFLAGS=-D__STDC_CONSTANT_MACROS ./configure where ?
24 avril 2013, par olidevI got this problem " 'UINT64_C' was not declared in this scope" while using the ffmpeg library for Eclipse running under Ubuntu.
After a while, I have found this solution : http://code.google.com/p/ffmpegsource/issues/detail?id=11
But I could not know how to this :
This should be fixed in our build system no matter what version of ffmpeg you're using. If you're still getting it, run configure like so :
CFLAGS=-D__STDC_CONSTANT_MACROS ./configure
and your problems should go away. This applies to other C++ programs using ffmpeg as well and not just to ffms2, but I can't guarantee that other programs won't break if you define that macro (they really shouldn't, though).Where can I run the configure ? from Terminal ? I tried with Terminal but it does not work.
Anybody has an idea how to run the configure ?
Thanks in advance and your help is much appreciate !
-
How do I batch cut videos ? [closed]
12 février 2024, par EngineerJackI've searched for a while on Google, but haven't found a good solution.


I have multiple videos that I want to cut parts from, so I would like to figure out how to batch cut them so I can figure out each video, then cut them all at once.


I assume I'll use the terminal or powershell, and use commands, write down the info for each video in a file (like a script) then call on that file so they process one after another from that script.


I know that I can do this one-by-one with the code below, but I would like to know how to use the following code for multiple videos as I described above.


ffmpeg -i "video.mp4" -ss 00:00:00 -to 00:00:00 -async 1 -strict -2 "cut.mp4"


BUT, a program (preferrably freeware) that isn't a video editor, but one that I can put the "start" and "end" times, then add multiple videos, WOULD be preferred.


Anyone who can help me with this, I'd appreciate it.


I've tried searching for ways to do this using .bat and .ps1 files on Google, but without finding a good solution.


-
Range selector for Video trimming
28 février 2019, par VoidMainI am working on a project in which I have to trim a video. But first the user needs to select the video for trimming I have done a little digging around and have failed to find a suitable library. I need to implement just the UI that would let the user select the starting and ending point of the trim.
(I need just the UI the data will be taken from that UI will be used in trimming the video using FFmpeg-android which is working properly)
A library similar to this iOS layout would do the trick.
https://drive.google.com/file/d/15FqIX_Sh1TqBrr2cZdkOka0pCMZ0BcNq/view
Please, do let me know if you have any ideas ? or a better solution for it.
Any help would be appreciated.
Thanks