
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (55)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (5656)
-
Want to print a console message on every .ts file entry in m3u8 file by ffmpeg
18 décembre 2015, par Anurag YadavI am using ffmpeg to record ip camera rtsp stream. I want to get .ts file entry at the instant when the entry is done in m3u8 file so that i can get and store it somewhere else. That’s why i want to print a console message when ffmpeg do entry on m3u8 file. I am using below command. Also Iam running command using java.
ffmpeg -rtsp_transport tcp -i <ip camera="camera" rtsp="rtsp" url="url"> -c:v copy -map 0 -f segment -segment_time 5 -segment_list_type m3u8 -segment_list /home/ira/Desktop/test/out.m3u8 -segment_format ts -y /home/ira/Desktop/test/out%01d.ts
</ip> -
How to keep the orientation number after converting from a video file to a image file by a ffmpeg command
15 mars 2018, par user27240The command below is working perfectly fine for my environment except it deletes the orientation number of the image file after being converted from a video file.
I’d like to know how to keep the orientation number of the image with the command line below(it also have to keep the original purpose of its functionality which is conversion of a video to a image to another directory). I’d appreciate your support.
for i in /path/to/inputs/*.mp4; do ffmpeg -i "$i" -frames:v 1 "/path/to/outputs/$(basename "$i" .mp4).jpg"; done
ffmpeg version 2.2.2
OS:centos-6 (x86_64) -
ffmpeg issue with file paths and wav file [closed]
8 septembre 2023, par 101is5I'm trying to run :


ffmpeg -i audio_input_files/voz.wav voz.mp3



I'm using Windows 11 and I've tested it in PowerShell and CMD.


The issue here involves path syntax and file format.

As shown in an example from ffmpeg docs (ffmpeg -i /tmp/test%d.Y /tmp/out.mpg
) and many other sources, I should put a leading slash in relative paths. Here, however, that causesNo such file or directory
, for both slash and backslash. Unlike everywhere I've looked, removing the leading slash was the solution.

Now, if the input is provided as a path and it is a
.wav
file, I getInvalid data found when processing input
.

Providing just names (and being in the correct folder, obviously), e.g.
ffmpeg -i voz.wav voz.mp3
works just fine, though.

Is there a workaround for that, i.e. in case I want to use paths for wav files with ffmpeg ?