
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (90)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...)
Sur d’autres sites (4956)
-
PaperClip check existence before process
15 juin 2015, par bobbystouketI’m trying to skip
PaperClip
process if my music has been deleted.Basically when I upload a music, I want to destroy every single piece of this uploaded file if something went wrong. This operation is delayed and done by
ffmpeg
. Another task is delayed to attached picture to my music.Unfortunately,
PaperClip
process (to attach the picture) has already been delayed when I destroy bad musics. This means when the process starts the source doesn’t exist anymore.
This blocks mydelayed_jobs
and I have to destroy it manually.I’m using Delayed_paperclip to create those delayed jobs.
How can I check if the source exists before processing ?
-
Inject FFMPEG video converter directly into .NET C# ?
3 juillet 2021, par Mehdi DaustanyHow to implement FFMPEG in .NET Core C# ?


I'm using FFMPEG as a batch file, I prepared a jobs queue, then Hangfire picks queue rows to sending to the batch file to starting convert by FFMPEG.


I need to inform users by a progress bar, because of using FFMPEG as a CLI third-party, it is unachievable.
Is there any
nuget
package or any way to inject FFMPEG into .NET ?

-
How to restart RTMP dump bash script if it closes / dies ?
9 février 2016, par Shashwat SinghI’m using this script to dump a live stream, say "stream1.sh" etc
#! /bin/bash
function INT_cleanup()
{
kill `jobs -p`
exit
}
trap INT_cleanup INT
count=0
while [[ $count < 10 ]] # Try 10 times
do
rtmpdump -r "rtmp://<ipaddress>" -a "live" -f "WIN 11,9,900,117" -W "http://xyz.swf" -p "" -y "xyz" --live | ffmpeg -re -i - -sn -vcodec copy -acodec copy -f flv "<ipaddress>"
count=$((count + 1))
done }
</ipaddress></ipaddress>It runs perfectly fine for 3-4 hours then it quits automatically due to packet loss or something, however if I restart it, it again starts working.
So, What should I do to restart this particular script IF it dies ? Will it require cronjob ? If yes, then please explain how ?