
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (51)
-
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 (...) -
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 (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)
Sur d’autres sites (5548)
-
Encode multiple files from the same Folder with Google Colab & FFmpeg
16 août 2021, par Ptibouc77i made a Google colab to encode my videos, but actually i can only do files on by one.
I want to encode all video files from the same folder.


I tried this but didn't seem to works


import os

DIRECTORY= '/content/drive/My Drive/Videos'
for filename in os.listdir(DIRECTORY):
 if (filename.endswith(".mov")): #or .avi, .mpeg, whatever.
 os.system("ffmpeg -i {0} -c:v libx265 -crf 26 -c:a aac -b:a 160k output%d.mp4".format(filename))
 print(filename)



Edit : I edited the FFmpeg command but still not workings on Google Colab.
Edit 2 : Print command only return the name of the files with the extension like "MyMovie.mov" how do i put the full path to the ffmpeg command ? I also want to put the ouput files to a subfolder named x265


-
How to merge Video and Subtitle on Google Colab with mkvmerge ?
23 août 2022, par SomeNameOn Google Colab I'm using mkvmerge to merge Video and Subtitle with only specifying the folder path also there is a option to include attachments fonts if preferred


The code doesn't belong to me I found it somewhere.


I tried this but it didn't seem to work? When I execute the code it does nothing? İt won't start muxing video and Subtitle? https://pastebin.com/raw/q85DTkta


-
Video files conversion/transcoding Google App Engine
22 avril 2020, par VasilisI want to start a cloud computing project with the simple task to :



- 

- Receive uploaded video files
- Do some transcoding / converting to them
- Allow user to download / stream the generated file









I was thinking
ffmpeg
as an external command line tool integrated in aJava/Google App engine Application
. Since it was fairly hard to be assured about the limitations of the framework, can someone tell me if this is feasible ?


Thank you in advance !