
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (60)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (7785)
-
ffmpeg - splitting TS file into shorter file by time
20 janvier 2017, par Rob EvesI am trying to convert a very long .ts video file - into a much shorter mp4 file.
The command I am using is :
ffmpeg.exe -i "C:\Users\Rob\Desktop\230316.ts" -ss 00:05:08 -t 00:00:50 -c copy "C:\Users\Rob\Desktop\VideoSplitter\16.18.mp4"
However, when running this, ffmpeg gets "stuck" and repeats the same line over and over in the terminal :
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/When I press CTRL+C to exit, I notice the new file has been created... however, only with audio and no video at all.
Any ideas how to fix this please ? I am using the latest ffmpeg.exe.
-
Manipulating strings (file extensions) in bash using find
26 mai 2016, par Darren ParkerI’m having trouble manipulating strings in bash. I wish to re-write extensions.
I have the following 2 files in a Downloads directory
- Example 001.mkv
- Example 002.mkv
Using the script below I always get the same filenames returned without .mkv rewritten into .mp4.
find /Downloads -name \*.mkv -execdir echo $(file={}; echo ${file/mkv/mp4};) \;
I understand this isn’t all you need to re-format a file but this script is part of a larger script that is passed to FFMPEG.
Here is the full command with FFMPEG.
find /Downloads -name \*.mkv -execdir ffmpeg -i {} -vcodec copy -acodec copy $(file={}; echo ${file/mkv/mp4};) \;
-
Combining audio (.mp4) file and video (.webm) file to a new (.mp4) file using python [closed]
3 mai 2020, par D. DamyanovHow can I merge .webm video file and a .mp4 audio file to a new .mp4 audio/video file using python ? I tried to use the ffmpeg package for PyCharm but I am having troubles with finding the right documentation. On the official site https://ffmpeg.org/ I`ve found only instructions for usage in the terminal or cmd.