
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (98)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9052)
-
ffmpeg ip camera error invalid data found when processing the input
4 décembre 2022, par mehdiI want to capture images from a remote ip camera (Dahua) using ffmpeg.
I am able to ping the camera ip and see it live on my browser.


Using this command :


ffmpeg -loglevel debug -rtsp_transport tcp -i "rtsp://admin:password@172.28.56.237:37777" -vframes 1 test.jpg



gives this result :


Splitting the commandline.
Reading option '-hide_banner' ... matched as option 'hide_banner' (do not show program banner) with argument '1'.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
Reading option '-rtsp_transport' ... matched as AVOption 'rtsp_transport' with argument 'tcp'.
Reading option '-i' ... matched as input url with argument 'rtsp://admin:password@172.28.56.237:37777/live'.
Reading option '-vframes' ... matched as option 'vframes' (set the number of video frames to output) with argument '1'.
Reading option 'test.jpg' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option hide_banner (do not show program banner) with argument 1.
Applying option loglevel (set logging level) with argument debug.
Successfully parsed a group of options.
Parsing a group of options: input url rtsp://admin:password@172.28.56.237:37777/live.
Successfully parsed a group of options.
Opening an input file: rtsp://admin:password@172.28.56.237:37777/live.
[tcp @ 0x5563a5c4b540] No default whitelist set
[tcp @ 0x5563a5c4b540] Original list of addresses:
[tcp @ 0x5563a5c4b540] Address 172.28.56.237 port 37777
[tcp @ 0x5563a5c4b540] Interleaved list of addresses:
[tcp @ 0x5563a5c4b540] Address 172.28.56.237 port 37777
[tcp @ 0x5563a5c4b540] Starting connection attempt to 172.28.56.237 port 37777
[tcp @ 0x5563a5c4b540] Successfully connected to 172.28.56.237 port 37777
rtsp://admin:password@172.28.56.237:37777/live: Invalid data found when processing input




in the camera settings the ports are :


tcp: 37777
udp: 37778
rtsp: 554



I also tried below commands, but the result was the same error :


ffmpeg -loglevel debug -rtsp_transport tcp -i "rtsp://admin:admin110@172.28.56.237:37777/live" -vframes 1 test.jpg




ffmpeg -loglevel debug -i "rtsp://admin:admin110@172.28.56.237:554/live" -vframes 1 test.jpg

result: Server returned 404 not found



I tried this in arch linux and windows and got the same error.


-
Error:Execution failed for task ':app:dexDebug' when compiling GooglePlayServices with 'org.bytedeco', name : 'javacv'
9 mars 2016, par Haroon AhmedI’m merging audio with video by compiling compile group : ’org.bytedeco’, name : ’javacv’, version : ’1.1’ and everything works fine.
But when i try to compile
compile 'com.google.android.gms:play-services:8.4.0'
with it ,its giving this errorError:Execution failed for task ’:app:dexDebug’.
com.android.ide.common.process.ProcessException : org.gradle.process.internal.ExecException : Process ’command
’C :\Program Files\Java\jdk1.7.0_75\bin\java.exe’’ finished with
non-zero exit value 2Build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
defaultConfig {
applicationId "com.app.id"
minSdkVersion 14
targetSdkVersion 23
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
sourceSets.main {
jni.srcDirs = []
jniLibs.srcDir 'src/main/jniLibs'
}
}
dependencies {
compile group: 'org.bytedeco', name: 'javacv', version: '1.1'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.google.android.gms:play-services:8.4.0'
} -
where is ffmpeg output file go ?
15 juin 2021, par راجہ سفیانI am following that link
http://adnan-tech.com/add-or-extract-audio-from-video-php-ffmpeg/

and according to that code I create file in php like that

<form action="post_audio.php" method="POST" enctype="multipart/form-data">
 <div class="form-group">
 <label>Select video</label>
 <input type="file" class="form-control" required="required" />
 </div>
 
 <div class="form-group">
 <label>Select audio</label>
 <input type="file" class="form-control" required="required" />
 </div>
 
 <input type="submit" class="btn btn-success" value="Add Audio" />
 </form>



and my post_audio.php file


$video = $_FILES["video"]["tmp_name"];
 $audio = $_FILES["audio"]["tmp_name"];
 
 $command = "C:\ffmpeg\bin\ffmpeg.exe -i " . $video . " -i " . $audio . " -c:v copy -map 0:v:0 -map 1:a:0 output.mp4";
 system($command);
 
 $command = "C:\ffmpeg\bin\ffmpeg.exe -i " . $video . " original-audio.mp3";
 system($command);



but it returns nothing and I don't know where is updated outfile located