
Recherche avancée
Autres articles (39)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (7581)
-
FFMPEG RTMP Streaming Issue On Live Server
7 juillet 2016, par skosI am trying to stream MP4 file over RTMP with nginx-rtmp. I have no issues streaming on my local machine with this command -
ffmpeg -re -i "sample-video.mp4" -c copy -f flv rtmp://localhost:1935/live/mystream
However. when I try to replicate the same on server with command -
ffmpeg -re -i "sample-video.mp4" -c copy -f flv rtmp://SERVER_IP_ADDRESS:1935/live/mystream
I get this error -
RTMP_Connect0, failed to connect socket. 10060 (Unknown error)
I looked up online for 10060 socket errors but couldn’t find much help. I am assuming this could be Firewall related but I am not exactly sure how do I resolve this. Any help would be apprecaited. Thanks !
-
Convert .MOV video format to .mp4 format
15 décembre 2015, par Nimesh ChandramaniyaI am developing an Android app, for which I need to convert videos with .MOV file extension (captured on iOS device) to .mp4 file extension. I tried changing the extension of the file via code (i.e. from MOV to mp4) but this approach didn’t work.
During my research I came across FFMPEG framework to work with different video file formats and I have the following questions :
- Is it possible to convert video file format using FFMPEG framework ? If yes, are there any online tutorials available on how to use this framework in Android ?
- Are there any Android API using which I can use to retrieve raw data (uncompressed) of any video file ? (If I can retrieve raw data, it’s easier to convert it to a desired file format)
I’d appreciate any suggestions on this issue. Thank you in advance.
-
discord.py FFMPEG Option reconnect not found
19 avril 2021, par LukeleleI'm working on a music bot using discord.py, I've looked online and found that I needed to pass in ffmpeg options into discord.FFmpegPCMAudio() for the bot to not stop half way through the song. However it returns an error "Option reconnect not found."


vc = await ctx.message.author.voice.channel.connect()

ydl_opts = {
 'format': 'bestaudio/best',
 'outtmpl': 'C:/Luke/YoutubeDLAudio/audio.mp3',
 'postprocessors': [{
 'key': 'FFmpegExtractAudio',
 'preferredcodec': 'mp3',
 'preferredquality': '192'
 }],
 'prefer_ffmpeg': True,
 'keepvideo': True
}

ffmpeg_opts = {'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5','options': '-vn'} # <---------------

with youtube_dl.YoutubeDL(ydl_opts) as ydl:
 ydl.download([url])

vc.play(discord.FFmpegPCMAudio(executable="C:/Luke/ffmpeg/bin/ffmpeg.exe", source="C:/Luke/YoutubeDLAudio/audio.mp3", **ffmpeg_opts)) <--------------



Does anyone know the problem ? Thanks for any help.